fork download
  1.  
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Sample102
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. // 数値の表示
  15. Console.Write(123);
  16. Console.WriteLine(456);
  17. // 文字列の表示
  18. Console.Write("ABC");
  19. Console.WriteLine("DEF");
  20. }
  21. }
  22. }
  23.  
Success #stdin #stdout 0.05s 28828KB
stdin
Standard input is empty
stdout
123456
ABCDEF