문제 출처 :
https://www.acmicpc.net/problem/10998
마찬가지로 다음과 같이 구현했습니다.
#include <iostream>
using namespace std;
int main(){
int a, b ;
do{
cin >> a;
}while(a <= 0) ;
do{
cin >> b;
}while(10 <= b) ;
int mul = a * b ;
cout << mul << endl;
return 0 ;
}
훈수, 조언 언제나 환영입니다.