import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BinomialCoefficient { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] input = br.readLine().split(" "); int n = Integer.parseInt(input[0]); int k = Integer.parseInt(inpu..