#include <stdio.h>

int main() {
    char s[100]; // Allocate enough space for the input
    fgets(s,sizeof(s),stdin); // Read input safely
    printf("Hello, World!\n"); // Print the first line
    printf("%s", s); // Print the input string
    return 0;
}