fork download
  1. using System;
  2.  
  3. class VideoSharp {
  4. static void Main () {
  5. for (int i = 0; i < Convert.ToInt32 (Console.ReadLine ()); i++)
  6. Console.WriteLine ("Hello!");
  7. Console.ReadLine ();
  8. }
  9. }
Success #stdin #stdout 0.02s 16064KB
stdin
5
5
5
5
5
stdout
Hello!
Hello!
Hello!
Hello!
Hello!