Untitled
Anonymous
c_cpp
11/29/2023 3:05 PM
240 B
16
Indexable
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
for (int i = 0; a <= b; a++) {
cout << a << "*" << a << "=" << a * a << endl;
}
}Editor is loading...
Leave a Comment