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


xcqzb (西南位育夏春秋)

學校 : 上海市娄山中学
編號 : 44163
來源 : [218.242.227.168]
最後登入時間 :
2015-08-06 14:42:11
a021. 大數運算 | From: [101.228.21.30] | 發表日期 : 2015-02-06 14:51

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.  
 
ZeroJudge Forum