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