#include <stdio.h>int main(){ int a,b; char c; scanf("%d%c%d", &a, &c, &b); switch(c) { case '+': printf("%d", a+b); } case}