fork download
  1. using System;
  2. public class Test
  3. {
  4. public static void Main()
  5. {
  6. int n;
  7. while ((n = int.Parse(Console.ReadLine()))!=42)
  8. Console.WriteLine(n);
  9. }
  10. }
Success #stdin #stdout 0.03s 37008KB
stdin
1
2
10
42
11
stdout
1
2
10