#include using namespace std; int main () { int i,a; for (i=0; i<5; i++) { a = i * i; cout << a << endl; }; cout << i << endl; return 0; }