Advertisement
veronikaaa86

02. Bonus Score

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