比赛 EYOI与SBOI开学欢乐赛6th 评测结果 AAAWAAAAAA
题目名称 夕景昨日 最终得分 90
用户昵称 ムラサメ 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-09-19 21:19:50
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int main(){
	freopen("switchs.in","r",stdin);
	freopen("switchs.out","w",stdout);
	int n;
	cin>>n;
	if(n<=10){
		cout<<"No"<<endl;
	}
	else{
		cout<<"Yes"<<endl;
	}
	return 0;
}