public class B23
{
public static void dicide(int n){
for(int i=0;i<10;i++){
for(int j=0;j<10;j++){
for(int k=0;k<10;k++){
for(int m=0;m<10;m++){
for(int l=0;l<10;l++){
if(isDifferent(i*10000+j*1000+k*100+m*10+l,(i*10000+j*1000+k*100+m*10+l)*n)){
System.out.printf("%d/%d%d%d%d%d=%d\t",(i*10000+j*1000+k*100+m*10+l)*n,i,j,k,m,l,n);
}
}
}
}
}
}
}
private static boolean isDifferent(int a,int b){
if(b>=100000){
return false;
}
boolean[]m=new boolean [10];
while(a!=0){
if(m[a%10]==true){
return false;
}
else{
m[a%10]=true;
a/=10;
}
}
while(b!=0){
if(m[b%10]==true){
return false;
}
else{
m[b%10]=true;
b/=10;
}
}
for(int i=1;i<10;i++){
if(m[i]==false){
return false;
}
}
return true;
}
public static void main(String[] args)
{
dicide(62);
}
}