fork download
  1. using System;
  2. using static System.Console;
  3.  
  4. namespace DD
  5. {
  6. public class Test
  7. {
  8. static void Main(string[] str)
  9. {
  10. if(str.Length == 0)
  11. {
  12. WriteLine("Empty");
  13. }
  14. WriteLine("DD");
  15. }
  16. }
  17. }
Success #stdin #stdout 0.02s 15784KB
stdin
Standard input is empty
stdout
Empty
DD