fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string firstName="Adam";
  8. string lastName="Handler";
  9. string middleName="Jon";
  10. Console.WriteLine("{0},{1},{2} \n {2},{0},{1}", firstName, lastName, middleName);
  11. Console.ReadLine();
  12.  
  13. }
  14. }
Success #stdin #stdout 0.03s 36944KB
stdin
Standard input is empty
stdout
Adam,Handler,Jon 
 Jon,Adam,Handler