Type: Default 1000ms 256MiB

Hello world!

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

Background

Special for beginners, ^_^

Description

Print "Hello world!".

Format

Input

No input.

Output

One line."Hello world!"

Samples

No input
Hello world!

Limitation

#include <iostream>

int main()
{
    std::cout << "Hello world!\n";
    return 0;
}