fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int n = Convert.ToInt32(Console.ReadLine());
  8. for (int i = 0; i < n; i++)
  9. Console.WriteLine("Hello, World!!!");
  10. }
  11. }
Success #stdin #stdout 0.03s 22404KB
stdin
3
stdout
Hello, World!!!
Hello, World!!!
Hello, World!!!