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
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/py_compile.py", line 117, in compile
    raise py_exc
py_compile.PyCompileError:   File "prog.py", line 1
    s=(*int)(input("Введите сколько денег хотите взять\n"))
       ^
SyntaxError: invalid syntax

stdout
Standard output is empty