# a,b=input().split(':')
# print(a,b,sep=':')
# a,b,c=input().split(':')
# print(b)
#a,b=input().split()
#c=int(a)+int(b)
# print(c)
# a=input()
# print(a,a,a)
# a=input()
# b=input()
# c=float(a)+float(b)
# print(c)
# format(c,".2f")
# a,b=input().split(' -')
# c=int(a)-int(b)
# print(c)
# a,b=input().split()
# c=float(a)*float(b)
# print(c)
# a,b=input().split()
# print(b,a)
# a,b=input().split()
# print(a,b)
# a,b=input().split()
# a = int(a)
# b = int(b)
# c = a/b
# d = format(c,".3f")
# print(d)
# a,b=input().split()
# a=float(a)
# b=float(b)
# c=a*b
# d=format(c,".2f")
# print(d)
# a,b,c=input().split()
# a=int(a)
# b=int(b)
# c=int(c)
# d=(a+b+c)/3
# f=a+b+c
# e=format(d,".2f")
# print(f,e)
# a = '1' b = '2' c = '3'
#print("'Hello'")
# a,b=input().split()
# c = a+b
# print(c)
'''
정수 + 정수 -> 정수
문자열 + 정수 -> (x)
문자열 + 문자열 -> 문자열 연결
print('hello'+'world')
print('hello'+3) (x)
print('hello'*3)
산술연산 + - * / // %
비교연산 > < >= <= == !=
1. 비교연산의 결과는 True or False 로만 나온다
print( 10 > 5 ) # 10이 5보다 큰가요?
print( 10 >= 5 ) # 10이 5보다 크거나 같나요?
print( 10 => 5 ) (x)
병혁 = 초록색옷 -> 병혁이 초록색옷으로 갈아입혀!!
병혁 == 초록색옷 -> 병혁이가 초록색 옷 입었는지 True or False로 대답해!
a,b=input().split()
print(a==b) # a와 b가 같나요?
print(a!=b) # a와 b가 다른가요?
'''
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a<b)
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a==b)
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a<=b)
# a,b=input().split()
# a=int(a)
# b=int(b)
# print(a!=b)
'''
논리연산 not and or
bool(0) -> False
bool(1) -> True
bool(50) -> True
0은 False
0이 아닌 모~든 수는 True
print(not True) False
print( True and True) True
print( True and False) False
print(a and b) -> a와 b가 모두 True인가요?
print(a or b) -> 둘 중 하나라도 True인가요?
'''
# a=(bool(0))
# print(not a)
1. 노트북 들고오기! -> 파이참 설정선생님이 해줄게!
or
2. 웹 파이썬 컴파일러 사이트를 계속 이용하기
https://www.onlinegdb.com/online_c_compiler
위에 링크로 들어가서 오른쪽 위에 Language를 Python3로 바꿔요!