12 years later

include

int main()
{
int i=2,j=3,k,l;
int a,b;
k=i/j*j;
l=j/i*i;
a=i/j*j;
b=j/i*i;
printf("%d%d%f",k,l,a,b);
return 0;
}