'''
m = int(input('몇 월 인가요?: '))
day30 = [4,6,9,11]
if m == 2:
print(m,'월은 28일 까지 있습니다')
elif m in day30:
print(m, "월은 30일 까지 있습니다")
else :
print(m,"월은 31일 까지 있습니다")
name = input('이름을 입력하세요:')
n = float(input('키를 입력하세요:'))
if name[0] == 'm' or n >= 150 and n < 170:
print('탈 수 있다.')
else :
print('탈 수 없어요.')
t = float(input('키 입력:'))
if 150 <= t <= 170 :
print('탈 수 있어요.')
elif 175 <= t <= 180 :
print('탈 수 있어요')
else :
print('탈 수 없어요')
t = float(input("키 입력:"))
g = input('성별 입력:')
if ( g=="여자" and 150 <= t <= 170) :
print('탈 수 있어요')
elif t%5==0:
print('탈 수 있어요')
else :
print('탈 수 없어요')
'''
a,b,c = map(int, input('높이 입력:').split(" "))
if a>150 and b>150 and c>150:
print("통과 :)" )
else :
print("불가능 :<")
l = int(input('연도를 입력하세요.:'))
if (l%4==0 and l%100 !=0) or l%400==0 :
print('윤년입니다')
else :
print('윤년이 아닙니다')
To embed this project on your website, copy the following code and paste it into your website's HTML: