한변 사이로 다른 좌표 하나가 들어오고 다른 좌표는 밖에 있으면 됨
 
a, b = map(int,input().split())
c, d = map(int,input().split())
 
if a > b:
  t=b
  b=a
  a=t
 
if c>d:
  t=d
  d=c
  c=t
 
if a < c < b and (d < a or d > b):
  print("cross")
elif a < d < b and (c < a or c > b):
  print("cross")
else:
  print("not cross")  

+ Recent posts