 бах8 
                                                21.10.2019 20:49
                                                
                                                бах8 
                                                21.10.2019 20:49
                                             jimitapark 
                                                14.03.2019 11:08
                                                
                                                jimitapark 
                                                14.03.2019 11:08
                                             077771086 
                                                23.07.2019 10:50
                                                
                                                077771086 
                                                23.07.2019 10:50
                                             donamigo2012 
                                                23.07.2019 10:50
                                                
                                                donamigo2012 
                                                23.07.2019 10:50
                                             ник4774 
                                                09.08.2019 05:40
                                                
                                                ник4774 
                                                09.08.2019 05:40
                                             killir99 
                                                25.11.2021 07:20
                                                
                                                killir99 
                                                25.11.2021 07:20
                                             Тане44ка 
                                                20.05.2021 18:06
                                                
                                                Тане44ка 
                                                20.05.2021 18:06
                                             Kerizok 
                                                20.05.2021 18:06
                                                
                                                Kerizok 
                                                20.05.2021 18:06
                                             Weterotog 
                                                20.05.2021 18:06
                                                
                                                Weterotog 
                                                20.05.2021 18:06
                                            
#include <cstdlib>
#include <iostream>
int main()
{
int a = 0, b = 0;
cout<<"Enter first number"<<endl;
cin>>a;
cout<<"Enter second number"<<endl;
cin>>b;
int raznost = a - b;
int modul = raznost;
if(modul<0)
modul = -modul;
cout<<"modul = ";
cout<<modul;
return 0;
}