Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

#include int main() { int x; int y; int sum; std::cin >> x; std::cin >> y; sum = x + y; std::cout << sum; std::cout << std::endl; return 0; }