#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
int sum=a+b;
if (sum%86==0)
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
}
return 0;
}
A+B problem too
最新推荐文章于 2022-10-12 21:24:32 发布