fork(53) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "cat".PadRight(10);
  8. string s2 = "poodle".PadRight(10);
  9.  
  10. Console.Write(s);
  11. Console.WriteLine("feline");
  12. Console.Write(s2);
  13. Console.WriteLine("canine");
  14. }
  15. }
Success #stdin #stdout 0.02s 33808KB
stdin
Standard input is empty
stdout
cat       feline
poodle    canine