Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. income = 76000;
  2. if income <= 50000:
  3. print(income * 0.1);
  4. if income >= 50000 and income <= 75000:
  5. print(income * 0.2);
  6. if income >= 75000 and income <= 100000:
  7. print(income * 0.5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement