문제 https://www.acmicpc.net/problem/1152
코드
word = input().split() print(len(word))
split()으로 ' '기준으로 쪼개서 배열로 만들고 len으로 길이 출력
split()
' '
len