dsa-1/1/A.cpp
2025-05-29 19:24:43 +03:00

11 lines
No EOL
139 B
C++

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