Skip to content

Commit 5de46e6

Browse files
committed
[BOJ] 1152 단어의 개수 (B2)
1 parent cd5aea4 commit 5de46e6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

심수연/8주차/260220.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# https://www.acmicpc.net/problem/1152
2+
3+
import sys
4+
input = sys.stdin.readline
5+
6+
arr = []
7+
arr.append(input().split())
8+
9+
print(len(*arr))

0 commit comments

Comments
 (0)