알고리즘
[백준 2741][Swift] 기찍 N
moving
2022. 3. 31. 20:58
728x90
코드
let input = Int(readLine()!)!
for i in 0..<input {
print(input - i)
}
https://www.acmicpc.net/problem/2742