Advertisement
veronikaaa86

02. Bonus Score

May 15th, 2022
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. num = int(input())
  2.  
  3. bonus = 0
  4. if num <= 100:
  5. bonus = 5
  6. elif num <= 1000:
  7. bonus = num * 0.20
  8. else:
  9. bonus = num * 0.10
  10.  
  11. if num % 2 == 0:
  12. bonus = bonus + 1
  13. elif num % 10 == 5:
  14. bonus = bonus + 2
  15.  
  16. total_points = num + bonus
  17. print(bonus)
  18. print(total_points)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement