#include main() { int i, n; printf("? "); scanf("%d", &n); for (i = 1; i <= n; i = i + 1) { printf("%10d%10d\n", i, i * i); } return 0; }