MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/C++

หšโ‚Šโœฉโ€งโ‚Š [2739/Cpp] ๊ตฌ๊ตฌ๋‹จ หšโ‚Šโœฉโ€งโ‚Š

HYEJU01 2021. 9. 4. 19:58
#include<iostream>
using namespace std;
int main(){
int a;
cin >> a;

for ( int i=1; i<=9; i++){
cout << a << " * " << i << " = " << a*i << endl;
}
return 0;
}