Ddimov90

iraining_lab_05_03

Sep 21st, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | Source Code | 0 0
  1. side_a = float(input()) * 100
  2. side_b = float(input()) * 100 - 100
  3.  
  4. side_b_desks = side_b // 70
  5. side_a_desks = side_a // 120
  6.  
  7. total = side_a_desks * side_b_desks - 3
  8.  
  9. print(int(total))
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment