#include <iostream>
 
using namespace std;
 
int main()
{
    int x, y;
    for (x=0; x<=10; x++) {
        y = 6*x;
        cout << "x = " << x << " " << "x*6 = " << y << endl; }
}