Files

9 lines
309 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
print("Введите координату x")
x = int(input())
print("Введите координату у")
y = int(input())
if abs(y) <= abs(x) and (-5 <= x <= 5):
print("Точка а попадает в фигуру")
else:
print("Точка а, не попадает в фигуру")