18 lines
213 B
C++
18 lines
213 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(){
|
|
int a, b, c;
|
|
string s;
|
|
|
|
cin >> a;
|
|
cin >> b >> c;
|
|
cin >> s;
|
|
|
|
cout << a + b + c << " " << s << endl;
|
|
|
|
return 0;
|
|
} |