fork download
  1. print( 'введите 3 числа' )
  2. a = float (input())
  3. b = float (input())
  4. c = float (input())
  5. print(a + b + c)
  6. print(a * b * c)
  7. print((a + b + c)/3)
Success #stdin #stdout 0.02s 7280KB
stdin
6
4
9
stdout
введите 3 числа
19.0
216.0
6.33333333333