Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Jul 29, 2024
1 parent 8b57ac3 commit c9e0d3b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions solutions/beecrowd/1041/1041.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
for line in sys.stdin:
x, y = map(float, line.split())
if not x and not y:
print("Origem")
print('Origem')
elif not x and y:
print("Eixo Y")
print('Eixo Y')
elif x and not y:
print("Eixo X")
print('Eixo X')
elif x > 0.0:
if y > 0.0:
print("Q1")
print('Q1')
else:
print("Q4")
print('Q4')
else:
if y > 0.0:
print("Q2")
print('Q2')
else:
print("Q3")
print('Q3')

0 comments on commit c9e0d3b

Please sign in to comment.