MapleStory Finger Point

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

[10998/Cpp] A×B

HYEJU01 2021. 9. 2. 00:32
#include<iostream> 
using namespace std; 
int main(){ 
    int a,b; 
    cin >> a >> b; 
    cout << a*b; 
    return 0; 
}