7 lines
189 B
Swift
7 lines
189 B
Swift
import Foundation
|
|
|
|
let ans = (1...5).compactMap { i in
|
|
return (readLine()?.contains("FBI") == true) ? String(i) : nil
|
|
}
|
|
|
|
print(ans.isEmpty ? "HE GOT AWAY!" : ans.joined(separator: " ")) |