문제
첫째 줄에 A×B를 출력한다.
언어
C++
정답
#include <iostream>using namespace std;int main() { int a,b; cin >> a >> b ; cout << a*b ; return 0;}
댓글
댓글 쓰기