fork download
  1. //gungahlin college
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace HelloWorld
  7. {
  8. class HelloWorld
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.Out.WriteLine("Three...Two...One...Zero...Liftoff!");
  13. Console.Out.WriteLine("Houston, We have a problem.");
  14. Console.In.ReadLine();
  15. }
  16. }
  17. }
Success #stdin #stdout 0.03s 36944KB
stdin
Standard input is empty
stdout
Three...Two...One...Zero...Liftoff!
Houston, We have a problem.