CodeForces - 869B The Eternal Immortality(8.3个人赛)

Even if the world is full of counterfeits, I still regard it as wonderful.

Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like this.

The phoenix has a rather long lifespan, and reincarnates itself once every a! years. Here a! denotes the factorial of integer a, that is, a! = 1 × 2 × ... × a. Specifically, 0! = 1.

Koyomi doesn't care much about this, but before he gets into another mess with oddities, he is interested in the number of times the phoenix will reincarnate in a timespan of b! years, that is, . Note that when b ≥ a this value is always integer.

As the answer can be quite large, it would be enough for Koyomi just to know the last digit of the answer in decimal representation. And you're here to provide Koyomi with this knowledge.

Input

The first and only line of input contains two space-separated integers a and b (0 ≤ a ≤ b ≤ 1018).

Output

Output one line containing a single decimal digit — the last digit of the value that interests Koyomi.

Examples

Input

2 4

Output

2

Input

0 10

Output

0

Input

107 109

Output

2

Note

In the first example, the last digit of  is 2;

In the second example, the last digit of  is 0;

In the third example, the last digit of  is 2.

感觉超级简单的一道题,但是比赛做不出来!WTF!

因为看数据量1e18,第一反应就是long long开不了这么大,用字符串存数据,用不了同余定理老是被卡住,赛后知道可以开LL的时候,秒a,然并卵啊。。。。。。这题就是同余定理。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<queue>
using namespace std;
typedef long long LL;
int main()
{
    LL a,b,i,ans=1;
    scanf("%lld %lld",&a,&b);
    if(b-a>=5)
    {
        printf("0\n");
    }
    else
    {
        for(i=b;i>=a+1;i--)
            ans=((ans%10)*(i%10))%10;
        printf("%lld",ans);
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/shezjoe/article/details/81407142
今日推荐