Untitled

Anonymous
plain_text
11/29/2023 3:44 PM
236 B
17
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a, b,x;
	cin >> a >> b;
	for (int i = a; i <= b; i++) {
		cout << i << "*" << i << "=" << i * i<<" ";
	}
}
Editor is loading...
Leave a Comment