Rebased projecteuler folder, now includes all contest programming stuff

This commit is contained in:
2021-10-26 10:54:24 +02:00
parent 1aa6120838
commit e0c627a384
77 changed files with 203 additions and 67 deletions

18
atcoder/practice1.cpp Normal file
View File

@@ -0,0 +1,18 @@
#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;
}