Skip to content

Commit e425a2a

Browse files
authored
Create Input and Output.cpp
1 parent 7bc93aa commit e425a2a

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

HackerRank/Input and Output.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#include <cmath>
2+
#include <cstdio>
3+
#include <vector>
4+
#include <iostream>
5+
using namespace std;
6+
7+
8+
int main() {
9+
int a,b ,c ;
10+
cin >> a;
11+
cin >> b;
12+
cin >> c;
13+
cout << a+b+c << endl;
14+
return 0;
15+
}

0 commit comments

Comments
 (0)