This commit is contained in:
Arthur K. 2025-05-29 19:24:43 +03:00
commit 810a9654a4
Signed by: wzray
GPG key ID: B97F30FDC4636357
50 changed files with 4450 additions and 0 deletions

11
1/A.cpp Normal file
View file

@ -0,0 +1,11 @@
#include <iostream>
int main( void ) {
long x;
long y;
std::cin >> x >> y;
std::cout << x + y;
return 0;
}