SWEA
[python][SWEA][D1] 2025. N줄덧셈
haju
2023. 5. 3. 21:33
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
n=int(input())
a=list(range(1,n+1))
print(sum(a))