Skip to content

Commit

Permalink
[BOJ] 11721(#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed May 26, 2022
1 parent 3102223 commit d0edf48
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BOJ/11721.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# BOJ 브론즈2 11721
# 열 개씩 끊어 출력하기

n = input()
cnt = 0

for i in n:
print(i, end="")
cnt += 1
if cnt % 10 == 0:
print()

0 comments on commit d0edf48

Please sign in to comment.