src2020/Template test/main.cpp

15 lines
255 B
C++

#include <iostream>
#include<cstdio>
using namespace std;
int main()
{
freopen("a.in","r",stdin);
freopen("a.out","w",stdout);
int x;
scanf("%d",&x);
printf("%d",x);
fclose(stdin);
fclose(stdout);
return 0;
}