https://www.acmicpc.net/problem/1152
내 제출
word = input().split()
print(len(word))
단어를 공백을 기준으로 끊어 받아서 단어의 길이(갯수)를 출력.
한번에 하면
print(len(input.split()))
https://www.acmicpc.net/problem/1152
내 제출
word = input().split()
print(len(word))
단어를 공백을 기준으로 끊어 받아서 단어의 길이(갯수)를 출력.
한번에 하면
print(len(input.split()))