5 lines
104 B
Python
5 lines
104 B
Python
print("Miles Kilometers")
|
|
for i in range(1, 11):
|
|
km = i*1.609
|
|
print(i, " ", km)
|