8393번: 합
// 백준 8393 합 let n = Int(readLine()!)! let sum = n * (n + 1) / 2 print(sum)
등차수열을 구하는 공식을 알고 있다면 쉽게 풀 수 있는 문제입니다.