top of page

#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    int a,b,r,x,y,cmmmc;
    cout<<"a=";cin>>a;
    cout<<"b=";cin>>b;
    x=a;y=b;
    ifstream f("cmmmc.in");
    ofstream g("cmmmc.txt");
    f>>a>>b; g<<a<<endl; g<<b<<endl;
    while(b!=0)
    {
        r=a%b;
        a=b;
        b=r;
    }
    cout<<"Cmmdc este "<<a<<"."<<endl;
    g<<"Cmmdc este "<<a<<"."<<endl;
    cmmmc=(x*y)/a;
    cout<<"Cmmmc este "<<cmmmc<<".";
    g<<"Cmmmc este "<<cmmmc<<".";
    return 0;
}

bottom of page