65,208
社区成员
发帖
与我相关
我的任务
分享
#define LOCAL
#include "stdafx.h"
#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
#ifdef LOCAL
cout << "*******LOCAL" << endl;
#endif
//freopen("in.txt", "r", stdin);
printf("hello world\n");
return 0;
}
