#include using namespace std; int a,b; int main() { freopen("input.in","r",stdin); freopen("output.out","w",stdout); scanf("%d%d",&a,&b); printf("%d",a+b); }