fork download
  1.  
Success #stdin #stdout 0.12s 14028KB
stdin
i = 1
while True:
print("perulangan ke-", i)
i += 1
if i > 5:
break 
stdout
Standard output is empty