| 比赛 | 小练习赛:A组 | 评测结果 | WWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 约数问题 | 最终得分 | 0 |
| 用户昵称 | Tear smile | 运行时间 | 0.002 s |
| 代码语言 | C++ | 内存使用 | 0.31 MiB |
| 提交时间 | 2014-10-21 19:59:58 | ||
#include<iostream>
#include<cstdio>
#include<algorithm> //排序在这个文件内
using namespace std;
int main()
{
freopen("pian_fen.in","r",stdin);
freopen("pian_fen.out","w",stdin);
int n,a;
cin>>n;
if(n<=5)
{
cout<<"Yes!"<<endl;
}
else
{
cout<<"No!"<<endl;
}
return 0;
}