RT
#include<bits/stdc++.h>
using namespace std;
template <typename T>
inline T read()
{
T f=1,w=0;char x=0;
while(x<'0'||x>'9') {if(x=='-') f=-1; x=getchar();}
while(x!=EOF&&x>='0'&&x<='9') {w=(w<<3)+(w<<1)+(x^48);x=getchar();}
return f*w;
}
int main(){
int a,b;
a=read();
b=read();
cout<<a+b;
}