#include <stdio.h> int main() { int x=0; while(x<=10) { int y=x*x; printf("%d\n",y); x=x+1; } return 0; }