#include int main(void){ int j; for(j = 1; j < 20; j++) printf("%8d %8d %8d\n", j, j * j, j * j * j); return 0;}