Advertisement
moseechev

x and y

Oct 14th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. x=int(input(''))
  2. y=int(input(''))
  3. if x>0 and y>0 :
  4. print ('1ая ось')
  5. if x<0 and y>0 :
  6. print ('2ая ось')
  7. if x>0 and y<0 :
  8. print ('3я ось')
  9. if x<0 and y<0 :
  10. print ('4ая ось')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement