1 2 3 4 5 6 7 8 9
#include <iosteam> int main() { int a,b; std::cin >> a >> b; std::cout << a + b << std::endl; return 0; }