top of page

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    int a,b;
    cin>>a>>b;
    ifstream f("numere divizibile.in");
    ofstream g("numere divizibile.txt");
    f>>a>>b;
    if (a%b==0 || b%a==0)
    {
        cout<<"Numerele sunt divizibile."<<endl;
        g<<a<<endl;
        g<<b<<endl;
        g<<"Numerele sunt divizibile."<<endl;
    }
    else {
        cout<<"Numerele nu sunt divizibile."<<endl;
        g<<a<<endl;
        g<<b<<endl;
        g<<"Numerele nu sunt divizibile."<<endl;
    }
    return 0;
}

 

bottom of page