5 lines
72 B
Python
5 lines
72 B
Python
# Tuliskan kode program dibawah ini
|
|
i = 1
|
|
while i < 6:
|
|
print(i)
|
|
i += 1 |