Untitled

Anonymous
plain_text
10/14/2024 4:52 PM
292 B
21
Indexable
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
int main() 
{
    int n, x; 
    cin>>n>>x;
    if(n % x == 0){
    cout<<"YES";
    }
    else{
    cout<<"NO";

    return 0;
}
Editor is loading...
Leave a Comment