Facebook
From Hrishikesh Saha, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 109
  1. a,b,c = input().split()
  2. d,e,f = input().split()
  3.  
  4. b = int(b)
  5. c = float(c)
  6. e = int(e)
  7. f = float(f)
  8.  
  9. value = (b*c) + (e*f)
  10. print(f"VALOR A PAGAR: R$ {value:.2f}")