/* Tanzila Islam Southeast University mail : tanzilamohita@gmail.com Problem Link: https://www.urionlinejudge.com.br/judge/en/problems/view/1078 */ #include<iostream> using namespace std; int main(){ int n; cin >> n; for(int i=1; i<=10;i++){ cout << i << "X" << n << " = " << i*n << endl; } return 0; }
No comments:
Post a Comment