// Demo Program showing output
// Marc Chee, June 2019

#include <stdio.h>

int main (void) {
    printf("Hello World.\n");
    return 0;
}

