#! /usr/bin/env rdmd

import std.stdio : writeln;

int main(immutable string[] args) {
    writeln("Hello World!");
    return 0;
}