#include <iostream>

using namespace std ;
int main()
{
int A, B, C ;
cin >> A ;
cin >> B ;
C = A+ B ;
cout << C ;
return 0 ;
}