#include <iostream>
using namespace std;

int main() {
    int n;
    cin>>n;
    for (int x=1 ; x<=n*10 ; x++ ) {
        if (x%n==0)
            cout<<x<<endl;
    }
}

Embed on website

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