Advertisement
ydpetkov

shopping

Jul 16th, 2022
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. budget = float(input())
  2. count_video_card = int(input())
  3. count_cpu = int(input())
  4. count_ram = int(input())
  5.  
  6.  
  7. sum_video_card = count_video_card * 250
  8.  
  9. price_cpu = sum_video_card * 0.35
  10. sum_cpu = count_cpu * price_cpu
  11.  
  12. price_ram = sum_video_card * 0.1
  13. sum_ram = count_ram * price_ram
  14. total_sum = sum_video_card + sum_cpu + sum_ram
  15.  
  16.  
  17.  
  18. if count_video_card > count_cpu:
  19. total_sum = total_sum * 0.85
  20.  
  21. diff = abs(budget - total_sum)
  22.  
  23. if budget >= total_sum:
  24. print(f'You have {diff:.2f} leva left!')
  25. else:
  26. print(f'Not enough money! You need {diff:.2f} leva more!')
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement