内存限制:512 MiB
时间限制:1000 ms
标准输入输出
题目类型:传统
评测方式:文本比较
【参考代码 1 C++】
#include<bits/stdc++.h>
using namespace std;
int main(){
cout << "Hello World!";
return 0;
}
【参考代码 2 C】
#include<bits/stdc++.h>
using namespace std;
int main(){
printf("Hello World!");
return 0;
}