#include using namespace std; int myadd(int x,int y); int main(){ int a,b,c; cin>>a >>b; c=myadd(a,b); cout << c << endl; return 0; }