#x=int(input())
#if(x%2==0):
#print("짝")
#else:
#print("홀")
#print((1==2) and (1==1)) ## and : 둘 중 하나라도 거짓이면 거짓
#print(((1==2) and (1==1)) or (3==3)) ## or: 둘 중 하나라도 참이면 참
#a,c=map(int,input().split()) ##시험 문제 X
#b=int(input())
#if a>b and a>c:
#print(a)
#elif b>c:
#print(b)
#else:
#print(c)
#a,c=map(int,input().split())
#b=input()
#if b=='+':
#print(a+c)
#elif b=='-':
#print(a-c)
#elif b=='*':
#print(a*c)
#elif b=='/':
#print(a/c)
#a=int(input()) ## 같은 블록 내에서는 열을 맞춰서 코딩
#if (a>=90):
#print('나는')
#print('A')
#elif (a>=80):
#print('나는')
#print('B')
#else:
#print('나는')
#print('C')
To embed this program on your website, copy the following code and paste it into your website's HTML: