فایل متنی
فایل cpp
#include "stdafx.h"
#include "iostream"
using namespace std;
//alidoran
int main()
{
int n, d;
cout << "Enter two positive integers: ";
cin >> n >> d;
if (!(n%d)) cout << n << " is divisible by "<< d << endl;
system("pause");
return 0;
}