Guest User

Untitled

a guest
Feb 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def leer(A,B,C):
  2. SALARY=(B*C)
  3. print("NUMBER =",A)
  4. print("SALARY = U$" "%.2f" % SALARY)
  5.  
  6.  
  7. A = int (input())
  8. B = int (input())
  9. C = float (input())
  10.  
  11.  
  12. leer (A,B,C)
Add Comment
Please, Sign In to add comment