Input and Output

  • + 0 comments

    include

    include

    include

    include

    include

    using namespace std;

    int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
    int s, n, t; cin >> s >> n >> t;

    Follow Me Linkedin: www.linkedin.com/in/nayem099
    Follow Me GitHub: https://github.com/Nayem-99
    
    
    
    cout << s + n + t;
    
    return 0;
    

    }