Aizu ITP1_1_A - Hello World

Problem

Welcome to Online Judge!

Write a program which prints "Hello World" to standard output.

Input

There is no input for this problem.

Output

Print "Hello World" in a line.

Sample Input

No input

Sample Output

Hello World

Solution

#include <iostream>

using namespace std;

int main() {
    cout << "Hello World" << endl;
    return 0;
}
上一篇:Oracle dmp文件导入(还原)到不同的表空间和不同的用户下


下一篇:卷积神经网络CNN(一)