#include
int main()
{
int a, b;
std::cout << "first number: ";</p>
std::cin >> a;
std::cout << "second number: ";</p>
std::cin >> b;
for(int i = a; i <= b; ++i)</p>
std::cout << i << "*" << i << " = " << i * i << std::endl;</p>
std::cin.get();
return 0;
}