Skip to content

Instantly share code, notes, and snippets.

@yefremov
Last active February 5, 2017 02:13
Show Gist options
  • Save yefremov/01d047e74c4a574f338ee25a7ff7ab68 to your computer and use it in GitHub Desktop.
Save yefremov/01d047e74c4a574f338ee25a7ff7ab68 to your computer and use it in GitHub Desktop.
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int n1;
int n2;
int n3;
cin >> n1 >> n2 >> n3;
cout << n1 + n2 + n3 << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment