**한개**
# 기본(문자열)
a = input()
# 숫자형(int 형변환)
a = int(input())
적은 값 - 문제에서 몇개 인지 지정 됬을때
split(), map() 함수 활용하기
# 기본(문자열)
a, b, c = input().split()
# 숫자형(map 이용 형변환)
a, b, c = map(int, input().split())
map(int, input().split()) → 해당 형태에 주의!
많은 값(N개 입력)
리스트로 입력 받기
# 기본(문자열)
data_str = list(input().split())
# 숫자형
data_num = list(map(int, input().split()))
**# 오타 안나게 형태에 주의!**
# 리스트 컴프리헨션(List Comprension)
numbers = [int(x) for x in input().split()]
빠른 입력
import sys
# input을 덮어써서 사용 가능
input = sys.stdin.readline
n = int(input().rstrip())
data = list(map(int, input().split()))