1057: Climb the stairs
[Creator : ]
Description
Given a staircase with N steps, a child runs up the stair with either 1, 2 or 3 steps at a time. How many possible different ways for the child reach the Nth stair
Input
One integer N
$ 1 \leq N \leq 20 $
$ 1 \leq N \leq 20 $
Output
One integer which is number of possible different ways
Sample Input Copy
4
Sample Output Copy
7