665. 倍数(C++语法题) 一心敲代码 2023-11-18 46 阅读1分钟 #include <cstdio> #include <iostream> using namespace std; int main() { int a,b; cin >> a >> b; if (a % b == 0 || b % a == 0) cout << "Sao Multiplos" << endl; else cout << "Nao sao Multiplos" << endl; return 0; }