蓝桥杯 算法训练 ALGO-42 送分啦

算法训练 送分啦
时间限制:1.0s 内存限制:512.0MB
提交此题
问题描述
  这题想得分吗?想,请输出“yes”;不想,请输出“no”。
输出格式
  输出包括一行,为“yes”或“no”。

PS:这个题,我喜欢( ̄▽ ̄)~*

#include <iostream>
using namespace std;
int main()
{
	cout << "yes";
	return 0;
}

猜你喜欢

转载自blog.csdn.net/weixin_43302818/article/details/85050357