728x90
https://www.acmicpc.net/problem/5086
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
while (true) {
int a, b;
cin >> a >> b;
if (a == 0 && b == 0) {
break;
}
if (a % b == 0) {
cout << "multiple\n";
}
else if (b % a == 0) {
cout << "factor\n";
}
else {
cout << "neither\n";
}
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2589번 보물섬 (0) | 2020.04.07 |
---|---|
[백준] 2630번 색종이 만들기 (0) | 2020.03.30 |
[백준] 10996번 별 찍기 - 21 (0) | 2020.03.30 |
[백준] 10039번 평균 점수 (0) | 2020.03.29 |
[백준] 14681번 사분면 고르기 (0) | 2020.03.29 |