6 lines
68 B
Python
6 lines
68 B
Python
|
euros = 1000
|
||
|
interest = 1.05
|
||
|
years = 3
|
||
|
|
||
|
print euros*interest**years
|