일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- suninatas 풀이
- 김성엽 대표님
- window
- 함수
- object
- htmlspecialchars
- 백준 파이썬
- 백준 알고리즘
- jQuery
- 배열
- IF문
- xss game 풀이
- 포인터
- property
- sql injection
- burp suite
- 자바스크립트
- 메소드
- python
- document
- lord of sql injection
- github
- xss game
- blind sql injection
- 객체
- Pwndbg
- 사칙연산
- 조건문
- 파이썬
- element 조회
Archives
- Today
- Total
power-girl0-0
[ 14681 ] 사분면 고르기 본문
728x90
x = int(input())
y = int(input())
if(x>=0 and y>=0):
print(1)
elif(x<0 and y>=0):
print(2)
elif(x<0 and y<0):
print(3)
elif(x>=0 and y<0):
print(4)
728x90
'백준 알고리즘 > python' 카테고리의 다른 글
[ 2739 ] 구구단 (0) | 2021.02.28 |
---|---|
[ 2884 ] 알람 시계 (0) | 2021.02.28 |
[ 2753 ] 윤년 (0) | 2021.02.28 |
[ 9498 ] 시험 성적 (0) | 2021.02.28 |
[ 1330 ] 두 수 비교하기 (0) | 2021.02.28 |
Comments