[Baekjoon] #26545 (Mathematics)

REi·2024년 7월 16일

Baekjoon 브론즈 V

목록 보기
52/72

> 문제

> 핵심 내용

  • int()
  • input()
  • 반복문 for문
  • print()

> 결과

> 결과 코드

# 백준 #26545 (Mathematics)

# N 입력
N = int(input())

sum = 0
for _ in range (N) :
    N = int(input())
    sum = sum + N

print(sum)

0개의 댓글