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