fork download
  1. using static System.Console;
  2.  
  3. class Program {
  4. static void Main() => WriteLine("123".PadLeft(6, '0'));
  5. }
  6.  
  7. //https://pt.stackoverflow.com/q/290790/101
Success #stdin #stdout 0.02s 15904KB
stdin
Standard input is empty
stdout
000123