fork download
  1. program ideone;
  2. begin
  3. (* your code goes here *)
  4. end.
Success #stdin #stdout 0s 5324KB
stdin
Программа mas;
Var A, B, C: array [1..10] of integer;
I: integer;
Begin
For I:=1 to 10 do read A[i];
For I:=1 to 10 do B[i]:=random(16)-10 ;
For I:=1 to 10 do C[i]:=(A*A)-2*B;
End;
For I:=1 to 10 do write (‘A[i]=‘, ‘ ,A);
Writeln 
For I:=1 to 10 do write (‘B[i]=‘, ‘ ,B);
Writeln
For I:=1 to 10 do write (‘C[i]=‘, ‘ ,C);
End.
stdout
Standard output is empty