int a,b;cin>>a>>b; while(a<=b) { cout << a*a << endl;a++; }
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
int a,b;cin>>a>>b;
while(a<=b)
{
cout << a*a << endl;a++;
}