View Code of Problem 1

#include <iostream>

int main()
{
	int a, b;
	std::cin >> a >> b;
	std::cout << a + b;
}

Double click to view unformatted code.


Back to problem 1