#include<iostream> using namespace std; int main(){ int a; cin>>a; // cout<<a<<endl; int b; cin>>b; // cout<<b<<endl; cout<<a+b<<endl; return 0; }