문자열 입력받기
let str = readLine()!
정수 입력받기
let num = Int(readLine()!)!
공백이 있는 숫자를 배열로 입력받기 (1 2 3 4 5)
let nums = readLine()!.split(separator: “ “).map{ Int(String($0))! }
// nums = [1, 2, 3, 4, 5]
공백이 없는 숫자를 배열로 입력받기 (12345)
let nums = readLine()!.map{ Int(String($0))! }
// nums = [1, 2, 3, 4, 5]
수정중입니다