fork download
  1. using System;
  2. class Program
  3. {
  4. static void Main(string[] args)
  5. {
  6. Console.WriteLine("Hello " + Console.ReadLine() + "!");
  7. }
  8. }
Success #stdin #stdout 0.02s 14596KB
stdin
World
stdout
Hello World!