fork(1) 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)/a)
Success #stdin #stdout 0.01s 7164KB
stdin
1
2
3

stdout
введите 3 числа
6.0
6.0
6.0