#include <iostream>
using namespace std;

int main () {
    int Num;
    cout << "Introduce un Número" << endl;
    cin >> Num;

    for (int Tablas = 1; Tablas <=10; Tablas++) {
        cout << Num << " * " << Tablas << " = ";
        cout << Tablas * Num << " " << endl;
    }
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: