比赛 | 20140418 | 评测结果 | AWWWWWWWWW |
---|---|---|---|
题目名称 | 建造滑雪场 | 最终得分 | 10 |
用户昵称 | King | 运行时间 | 0.002 s |
代码语言 | C++ | 内存使用 | 0.29 MiB |
提交时间 | 2014-04-18 10:42:56 | ||
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; int main() { int n,m; freopen("skicourse.in","r",stdin); freopen("skicourse.out","w",stdout); scanf("%d%d",&n,&m); printf("%d\n",min(n,m)); return 0; }