#include <stdio.h>
#include <math.h>

int main(int argc, char *argv[]) {
    printf("Hello World!\n");
    printf("The square root of 2 is %1.6f\n", sqrt(2.0));
    return 0;
}
