Initial commit

This commit is contained in:
2022-06-01 20:14:50 +03:00
commit 8b9cce4739
1094 changed files with 68851 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,13 @@
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a;
cin >> b;
cout << a + b << endl;
return 0;
}