In Pascal's triangle, each number is the sum of the two numbers directly above it.
Given two integers R, C to represents the index inside a Pascal’s triangle. Please write a C program to calculate its value. E.g. R = 4, C = 2. Value is 6.
Hint: if C equals to 0 or R. Value is 1.

Note:
Two integers R(row), C(column).
Note:
Output should follow below format:
N
Note that: