Sichanov

sad

Sep 29th, 2021
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 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. first_condition = (x == x1 or x == x2) and (y1 <= y <= y2)
  9. second_condition = (y == y1 or y == y2) and (x1 <= x <= x2)
  10.  
  11. if first_condition or second_condition:
  12.     print('Border')
  13. else:
  14.     print('Inside / Outside')
  15.  
Advertisement
Add Comment
Please, Sign In to add comment