#9633: 輸出入測資超過上限 200 bytes. ,請重新決定測資。


xcqzb (西南位育夏春秋)


var
  a,b,c:int64;
  d,e,f:char;
begin
  while not eof do begin
    readln(a,d,e,f,b);
    if e='+' then c:=a+b;
    if e='-' then c:=a-b; 
    if e='*' then c:=a*b;     
    if e='/' then c:=a/b; 
    writeln(c);       
  end;
end.