fork(1) download
  1. # พิมพ์เลข 1 ถึง 1,000,000
  2. for i in range(1, 1000001):
  3. print(i)
Success #stdin #stdout 0.04s 25524KB
stdin
Standard input is empty
stdout
# พิมพ์เลข 1 ถึง 1,000,000
for i in range(1, 1000001):
    print(i)