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