#include #include int main(void) { int x; int y; printf("Input the integer: "); scanf("%d", &x); y = x*x; printf("The square of %d is %d.\n", x, y); return EXIT_SUCCESS; }