본문 바로가기
  • Welcome.
:: Python 🚩/알고리즘

[코딩] [백준 14681 python]

by EunBird 2023. 1. 19.

https://www.acmicpc.net/problem/14681

 

 

x = int(input())
y = int(input())
if 0 < x :
    if 0 < y:
        print("1")
    if y < 0 :
        print("4")
if x < 0 :
    if 0 < y:
        print("2")
    if y < 0:
        print("3")
728x90

':: Python 🚩 > 알고리즘' 카테고리의 다른 글

BFS & DFS  (1) 2023.02.16
[코딩] [백준 2884 python]  (0) 2023.01.19
[코딩] [백준 10808 python]  (0) 2023.01.19

댓글