HDU 2101: A + B Problem Too
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2101: A + B Problem Too相关的知识,希望对你有一定的参考价值。
///@link http://acm.hdu.edu.cn/showproblem.php?pid=2101
///@author Sycamore
///@date Aug, 16
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int A,B;
while(cin>>A>>B)
cout<<((A+B)%86?"no\n":"yes\n");
return 0;
}
以上是关于HDU 2101: A + B Problem Too的主要内容,如果未能解决你的问题,请参考以下文章
HDU 1002: A + B Problem II (大数加法)