#include int main(void){ int x,y; char op; scanf("%d",&x); scanf("%c",&op); scanf("%d",&y); printf("%d\n",op=='+'?(x-y):(x+y)); return 0; }