华师一附中OI组
标题:
快读技术
[打印本页]
作者:
admin
时间:
2019-11-12 15:18
标题:
快读技术
#include <cstdio>
#include <cstdlib>
#include <algorithm>
using namespace std;
int getint()
{
int res = 0;
char ch = getchar();
while (ch < '0' || ch > '9')
ch = getchar();
while (ch >= '0' && ch <= '9')
res = res * 10 + ch - '0', ch = getchar();
return res;
}
int main()
{
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
// getchar 是从 stdin 读入的,必须用 freopen 加载输入文件
int n = getint();
int m = getint();
printf("%d %d\n", n, m);
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2