fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int a = 1;
  8. int b = 2;
  9.  
  10. if ((a == b).ToString().Length > 4)
  11. {
  12. Console.WriteLine("False");
  13. }
  14. else
  15. {
  16. Console.WriteLine("True");
  17. }
  18. }
  19. }
Success #stdin #stdout 0.02s 14536KB
stdin
Standard input is empty
stdout
False