第一期训练题08

点击查看原题

#include "pch.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;
}

猜你喜欢

转载自blog.csdn.net/Go_Joe/article/details/84886398