fork download
  1. a = input('Впишите радиус круга в миллиметрах: ')
  2. s = 3.14159 * a * a
  3. ss = s//1
  4. v = 0.75 * 3.14 * a * a * a
  5. words = 'Площадь круга(кв.мм): '
  6. wordstwo = 'Объем шара(куб.мм): '
  7. print(words),
  8. print(s)
  9. print(wordstwo),
  10. print(v)
  11.  
Runtime error #stdin #stdout #stderr 0.01s 118656KB
stdin
Standard input is empty
stdout
Впишите радиус круга в миллиметрах: 
stderr
Traceback (most recent call last):
  File "prog.py", line 1, in <module>
    a = input('Впишите радиус круга в миллиметрах: ')
EOFError