fork(1) download
  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 четверть")
  11. if x==0 or y==0:
  12. print("Точка лежит на оси координат")
Success #stdin #stdout 0.03s 9756KB
stdin
-745615689415
674578461957
stdout
2 четверть