fork(6) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine(YourMethod("Soner"));
  8. }
  9.  
  10. static string YourMethod(string s)
  11. {
  12. return s.Length < 30 ? s.PadRight(30 - s.Length, ' ') : s;
  13. }
  14. }
Success #stdin #stdout 0.02s 33816KB
stdin
Standard input is empty
stdout
Soner