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