ACM第八题

             题目链接:https://vjudge.net/problem/HDU-2101

    #include <iostream>
using namespace std;
int main()
{
int A, B;
while (cin >> A >> B)
 {
  if ((A + B) % 86 == 0)
   cout << "yes";
  else cout << "no";
  cout << '\n';
 }
 }


猜你喜欢

转载自blog.csdn.net/qq_20618369/article/details/84890131