美文网首页
2018-12-06

2018-12-06

作者: 2639c4293ebe | 来源:发表于2018-12-06 18:42 被阅读0次

    同a+b。

    #include<stdio.h>

    #include <iostream>

    using namespace std;

    int main()

    {

    int a, b;

    while (cin >> a >> b)

    {

    if ((a + b) % 86 == 0)

    {

    cout << "yes" << endl;

    }

    else

    cout << "no" << endl;

    }

    return 0;

    }

    相关文章

      网友评论

          本文标题:2018-12-06

          本文链接:https://www.haomeiwen.com/subject/affacqtx.html