665. 倍数(C++语法题)

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;
}