#include <iostream>
using namespace std;
int main() {
/* 下面的代码将在屏幕上打印 Hello World!
这真是太棒了 */
cout << "Hello World!";
return 0;
}