#include <iostream>

int main() {
	long x, y;
	std::cin >> x >> y;
	std::cout << x + y;
	return 0;
}