这道超级简单的题目没有任何输入。
你只需要在第一行中输出程序员钦定名言“Hello World”,并且在第二行中输出更新版的“Hello New World”就可以了。
#include<iostream>
#include<cstdio>
#include<set>
using namespace std;
const int maxn=1010;
int num[maxn];
int main(){
printf("Hello World\n");
printf("Hello New World\n");
return 0;
}