fork download
  1. using System;
  2. namespace Hello
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine("What is your name?");
  9. string s = Console.ReadLine();
  10. Console.WriteLine("Hello " + "Adrian" + "!");
  11. }
  12. }
  13. }
Success #stdin #stdout 0.04s 26596KB
stdin
1
2
3
42
10
stdout
What is your name?
Hello Adrian!