1 2 3 4 5 6 7 8 9
function main() a = Int[] for i in 0:499_999 push!(a, i) end b = sort(a) println(b[1], " ", b[500_000]) end main()