#include #include int main(void) { int n=1; while (n <= 20) { printf("The square of %4d is %4d.\n", n, n*n); n = n+1; } return EXIT_SUCCESS; }