program print2(output);
  procedure print(x: integer);
  begin
    writeln(x)
  end;
begin
  print(2)
end.
