Messy_ @ 2024-07-20 17:06:47
#include <iostream>
using namespace std;
long long a,b;
int main ()
{
cin>>a>>b;
if(a==b)
{
if(a/10000000==b%10)
{
cout<<1;
}
else
{
cout<<0;
}
}
else
{
cout<<3;
}
return 0;
}
by Wang_Xu @ 2024-07-20 17:10:55
你能对我吃
by Wang_Xu @ 2024-07-20 17:11:54
@banruibo 他一定只有3种情况么
by wayitiu @ 2024-07-23 10:57:25
那你这样写样例都过不了