Skip to content

Instantly share code, notes, and snippets.

@lullasy
Last active November 30, 2023 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lullasy/d4bbc2deef798f9921bcf40c55b6e495 to your computer and use it in GitHub Desktop.
Save lullasy/d4bbc2deef798f9921bcf40c55b6e495 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
using namespace std;
int main() {
int a, b, c;
string s;
cin >> a >> b >> c >> s;
cout << a + b + c << " " << s << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment