#include <stdio.h>
#include "square.h"

int main() {
    int x = 3;
    printf("The square of %d is %d\n",
            x, square(x));
}
