5 lines
133 B
Swift
5 lines
133 B
Swift
if let input = readLine(),
|
|
let nums = input.split(separator: " ").map({Int64($0)}) as? [Int64]
|
|
{
|
|
print(abs(nums[0]-nums[1]))
|
|
} |