Advertisement
VergeoPaw

1010

Sep 17th, 2021
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. A1,A2,A3 = input().split()
  2. B1,B2,B3 = input().split()
  3. C1 = int(A1)
  4. C2 = int(A2)
  5. C3 = float(A3)
  6. D1 = int(B1)
  7. D2 = int(B2)
  8. D3 = float(B3)
  9. Total = (C2*C3) + (D2*D3)
  10. print("VALOR A PAGAR: R$ %.2f"%Total)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement