標準入力の受け取り方(C級)
以下のように1行目に整数を空白区切りで2つ
2行目に整数を空白区切りで3つ受け取る場合
N M
A B C
let input = readLine()!.split(separator: " ").map { Int($0)! }
let n = input[0]
let m = input[1]
let costs = readLine()!.split(separator: " ").map { Int($0)! }
let a = costs[0]
let b = costs[1]
let c = costs[2]
※問題を解いていき次第追加していきます。