fork download
  1. { NOTE: it is recommended to use this even if you don't understand the following code }
  2.  
  3. const
  4. MAXT = 10000;
  5.  
  6. var
  7. L, T, i, j : LongInt;
  8. S, D : Array[0..2] of AnsiString;
  9.  
  10. begin
  11. {
  12.   uncomment the two following lines if you want to read/write from files
  13.   assign(input, 'input.txt'); reset(input);
  14.   assign(output, 'output.txt'); rewrite(output);
  15. }
  16.  
  17. ReadLn(T);
  18.  
  19. for i:=0 to T-1 do
  20. begin
  21. for j:=0 to 2 do
  22. Read(S[j]);
  23. for j:=0 to 2 do
  24. Read(D[j]);
  25.  
  26. L := 0;
  27.  
  28. { INSERT YOUR CODE HERE }
  29.  
  30.  
  31. WriteLn(L);
  32. end;
  33.  
  34. end.
  35.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty