#949. 求a到b的阶乘和

求a到b的阶乘和

Background

输入a和b,求a!+(a+1)!+...+b! 0<a,b<10

Input

输入一行,两个数字a和b

Output

输出一行,a到b的阶乘和

Samples

2 3
8

Limitation

1s, 1024KiB for each test case.