11 lines
No EOL
139 B
C++
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;
|
|
} |