fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var teste = "1";
  6. WriteLine(teste.PadLeft(6, '0'));
  7. }
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/200867/101
Success #stdin #stdout 0.02s 15900KB
stdin
Standard input is empty
stdout
000001