char ch;
ch = input();
if(ch == '+'){
}
if(ch == '-'){
}
if(ch == '*'){
}
if(ch == '/'){
}
char op;
op=getchar();
if (op=='+')
{
puts("+");
}
else if (op=='-')
{
puts("-");
}
else if (op=='*')
{
puts("*");
}
else if (op=='/')
{
puts("/");
}
else puts("ERROR");