0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-10-05 17:29:47 +08:00 committed by Baoshuo Ren
parent c02434fa38
commit 54841219e5
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

11
AcWing/665/665.cpp Normal file
View File

@ -0,0 +1,11 @@
#include <bits/stdc++.h>
using namespace std;
int a, b;
int main() {
cin >> a >> b;
cout << (a % b == 0 || b % a == 0 ? "Sao Multiplos" : "Nao sao Multiplos") << endl;
return 0;
}