fork download
  1. using System;
  2. public class Test
  3. {
  4. public static void Main()
  5. {
  6. Console.WriteLine(1 << 4);
  7. Console.WriteLine(1 << 36);
  8. Console.WriteLine(1L << 36);
  9. }
  10. }
Success #stdin #stdout 0.03s 33904KB
stdin
1
2
10
42
11
stdout
16
16
68719476736