#include<iostream>
usingnamespace std;
void fu();
int main(){
for(int i=0;i<3;i++){
fu();
cout<<endl;
}
system("PAUSE");
return 0;
}
void fu(){
int a=rand()%100;
int b=rand()%1000;
int c=rand()%100;
int d=rand()%1000;
int e=rand();
int z=a*d;
int p=b*c;
int k=z-p;
int n=b*d;
cout<<k<<" / "<<n;
}
#include<iostream>
usingnamespace std;
void fu();
int main(){
for(int i=0;i<3;i++){
fu();
cout<<endl;
}
system("PAUSE");
return 0;
}
void fu(){
int a=rand()%100;
int b=rand()%1000;
int c=rand()%100;
int d=rand()%1000;
int e=rand();
int z=a*d;
int p=b*c;
int k=z-p;
int n=b*d;
cout<<k<<" / "<<n;
}