func main[] : I64 let n: I64 = 40 let r: I64 = 20 let out: I64 = 1 for i in 1..r+1 out = out * (n - (r - i)) / i io.print_i64(out)