Skip to main content

Input and Output hackerrank

Input and Output

 

 

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
int a, b, c, d;
cin >> a>>b>> c;
d = a+b+c;
cout<< d;
return 0;
}