6 lines
81 B
Python
Executable File
6 lines
81 B
Python
Executable File
jumlah = 5
|
|
|
|
while jumlah > 0:
|
|
print (jumlah)
|
|
jumlah -= 1
|
|
print("selesai") |