정답
print(sum(range(1, int(input())+1)))
내가 쓴 답 미개한 버전
내가 쓴 답
n = int(input()) sum = (n+1)*n/2 print(int(sum))