Advertisement
jumboframe

Untitled

Oct 8th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. w=float(input())
  2. h=float(input())
  3.  
  4. w_to_cm = w * 100
  5. h_to_cm = h * 100
  6.  
  7. rows = w_to_cm // 120
  8. h_to_cm -= 100
  9. buros_in_row = h_to_cm // 70
  10.  
  11. all_buros = rows * buros_in_row
  12. all_buros -=3
  13.  
  14. print (all_buros)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement