fork download
  1.  
Success #stdin #stdout 0.05s 62780KB
stdin
# Perulangan WHILE
x = 1
while x <= 5:
    print("WHILE - Angka ke-", x)
    x += 1
stdout
Standard output is empty