#include <stdio.h>
int main()
{
    int a; //Correspond au Premier Nombre
    int b; // Correspond au Second Nombre
    int r;
    int q;
    //Retrouvez Plus d'exercices corriges sur le site : www.PandaCodeur.com
    printf("entrer vos deux nombres\n");
    scanf("%d %d",&a,&b);
    if (b==0)
        printf("pas de solution");
    else
    {
        q= a/b;
        r= a%b;
        printf("%d diviser par %d ( le quotient de votre division est %d et le reste est %d )",a,b,q,r);
    }
    //www.PANDACODEUR.COM
    return 0;
}