simeonshopov

Daily earning

Sep 2nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. n=int(input())
  2. m=float(input())
  3. change=float(input())
  4. year_earning=12*n*m+n*m*2.5
  5. day_earning=((year_earning-year_earning*(25/100))*change)/365
  6. print('%.2f'%day_earning)
Add Comment
Please, Sign In to add comment