10699: 오늘 날짜

#10699
from datetime import datetime
print(datetime.today().strftime('%Y-%m-%d')

10171: 고양이

#10171
print("""\\\\    /\\\\
 )  ( ')
(  /  )
 \\\\(__)|""")

10869: 사칙연산

#10863
A, B = input().split()
A = int(A)
B = int(B)
print(A + B)
print(A - B)
print(A * B)
print(int(A / B))
print(A % B)

11382: 꼬마 정민

#11382
n1, n2, n3 = input().split()
n1 = int(n1)
n2 = int(n2)
n3 = int(n3)
print(n1 + n2 + n3)

2753: 윤년

#2753
year = int(input())
if year % 4 == 0 and year % 100 != 0:
    print(1)
elif year % 400 == 0:
    print(1)
else:
    print(0)

14681: 사분면 고르기

x = int(input())
y = int(input())
if x > 0 and y > 0:
    print(1)
elif x < 0 < y:
    print(2)
elif x < 0 and y < 0:
    print(3)
else:
    print(4)

2420: 사파리월드

#2420
N, M = input().split()
N = int(N)
M = int(M)
result = 0
if N > M:
    result = N - M
else:
    result = M - N
print(result)