#include int main(){ int i = 0; top: printf("%d ", i*i); i++; if(i < 20) goto top; printf("\n"); return 0; }