https://www.acmicpc.net/problem/2440 문제 링크
let input = Int(readLine()!)! for i in (1...input).reversed() { // *를 i번 반복 print(String(repeating: "*", count: i)) }