fork(2) download
  1. using System;
  2.  
  3. namespace ProgramConsole
  4. {
  5. public class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. string s = "XX123456789";
  10. Console.WriteLine(s.Substring(0, 2));
  11. Console.WriteLine(s.Substring(2));
  12. }
  13. }
  14. }
Success #stdin #stdout 0.02s 33760KB
stdin
Standard input is empty
stdout
XX
123456789