SWEA - 2025 solution Aug 8, 2021 2025.N줄덧셈 풀이 T = int(input()) total = 0 for i in range(1, T+1): total += i print(total)