[파이썬] 2741번:N찍기

김충섭·2021년 5월 28일
0

백준

목록 보기
17/39
post-thumbnail

# 문제: https://www.acmicpc.net/problem/2741
# 풀이자: 김충섭(kchs94)
N = int(input()) #입력+형변환

for i in range(N):  # for문을 이용한 반복
    print(i+1)

profile
나를 위한 개발블로그

0개의 댓글