Advertisement
aneliabogeva

03. Point in Rectangle

Apr 23rd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. x1 = float(input())
  2. y1 = float(input())
  3. x2 = float(input())
  4. y2 = float(input())
  5. x = float(input())
  6. y = float(input())
  7.  
  8. if x >= x1 and x <= x2 and y >= y1 and y <= y2:
  9. print('Inside')
  10. else:
  11. print('Outside')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement