//python3 s=input().split() print(int(s[0])+int(s[1]))
//C++
using namespace std; int main(){ int A,B; cin>>A>>B; cout<<A+B; }