Do IT Yourself
생각보다 간단하게 식으로 나타낼 수 있다. inp = input().split() N = int(inp[0]) M = int(inp[1]) if(1
간단한 문제이다. 띄어쓰기를 기준으로 문장을 쪼개어 단어의 개수를 세면 된다. string = input() print(len(string.split()))