fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. static void Main(string[] args)
  6. {
  7. bool flag = true;
  8. if (flag)
  9. {
  10. Console.Write("Hello,");
  11. }
  12. Console.Write("Hi");
  13. Console.ReadLine();
  14. }
  15. }
Success #stdin #stdout 0.01s 131776KB
stdin
1
stdout
Hello,Hi