fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine("What is your name?");
  8. string s = Console.ReadLine();
  9. Console.WriteLine("Hello " + "Emma" + "!");
  10. }
  11. }
  12.  
Success #stdin #stdout 0.05s 28720KB
stdin
Standard input is empty
stdout
What is your name?
Hello Emma!