fork download
  1. s=(int)(input("Введите сколько денег хотите взять\n"))
  2. p=(int)(input("Введите процент\n"))
  3. n=(int)(input("Насколько лет?\n"))
  4. Mounth=(s*p*(1+p)*n)/12*((1+p)*n-1)
  5. All=Mounth*n
  6. print(s," - Столько денег вы хотите взять\n")
  7. print(p," - Под такой процент\n")
  8. print(n," - На столько лет\n")
  9. print(Mounth," - Месячный платёж\n")
  10. print(All," - Столько денег за всё время \n")# your code goes here
Runtime error #stdin #stdout #stderr 0.02s 27720KB
stdin
Standard input is empty
stdout
Введите сколько денег хотите взять
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
EOFError: EOF when reading a line