#include <iostream>
int main(void)
{
unsigned long a,b;
std::cin >> a >> b;
std::cout << (a+b) ;
return 0;
}