#10699 오늘날짜
import datetime
print(str(datetime.datetime.today())[:10])
#10171 고양이 =>\\\\두개를 써야 인식된다
print("\\\\    /\\\\")
print(" )  ( ')")
print("(  /  )")
print(" \\\\(__)|")
#10869 사칙연산
a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)
#11382 꼬마 정민
A, B, C = map(int, input().split())
print(A+B+C)
#2753 윤년
year = int(input())

if ((year%4 == 0)and(year%100 != 0)) or (year%400 == 0):
    print('1')
else:
    print('0')
#14861 사분면 고르기
x= int(input())
y= int(input())

if x > 0 and y > 0 :	# x,y: 양수
    print('1')
elif x < 0 and y > 0 :	# x:음수, y:양수
    print('2')
elif x < 0 and y < 0 :	# x,y: 음수
    print('3')
else:
    print('4')
#사파리월드
a, b = map(int, input().split())
print(abs(a - b))