5 lines
79 B
Python
5 lines
79 B
Python
# Tuliskan kode program dibawah ini
|
|
i = 1
|
|
while i >= 1:
|
|
print(i)
|
|
i -= 1 |