Problem C
Card Magic
Johanna knows mind reading magic, or so she says. Her new
trick consists of lining up
You start wondering just how large that chance was. You could easily compute the number of ways to pick one card from each deck, but how many of these ways have the correct sum?
Input
The first line contains three space-separated integers
Output
Output a single integer – the number of ways Johanna could
have picked a card from each deck, such that the picked cards
sum up to
Sample Input 1 | Sample Output 1 |
---|---|
5 2 6 |
5 |
Sample Input 2 | Sample Output 2 |
---|---|
5 5 25 |
1 |
Sample Input 3 | Sample Output 3 |
---|---|
5 4 12 |
155 |