[Swift] 백준 2475
·
📝 코테/BOJ
let input = readLine()!.split(separator: " ").map { Int($0)! * Int($0)! }.reduce(0, +) print(input % 10) 숫자들의 합을 더할때는 .reduce(0, +)를 쓰면 편하다.