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