ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1964. Chinese Dialects

Why compilation ERROR?!?!?!?!? WTF?!?!?!?
Posted by Ivan Metelev 29 Nov 2014 19:14
var a,i,b,n,k: int64;
begin
readln(n,k);
for i:=1 to k do
 begin
  read(a);
  b:=b+a;
 end;
writeln(b-n);
end.
Re: Why compilation ERROR?!?!?!?!? WTF?!?!?!?
Posted by Mescheryakov_Kirill 3 Dec 2014 19:14
In the "For" can not be used "int64"
Re: Why compilation ERROR?!?!?!?!? WTF?!?!?!?
Posted by Ivan Metelev 25 May 2016 11:30
Thank you