URI Online Judge Solution 1007 - Solution in C




Solution in C



#include <stdio.h>
int main()
{
    int a,b,c,d,DIFERENCA;
    scanf("%d%d%d%d",&a,&b,&c,&d);
    DIFERENCA=(a*b-c*d);
    printf("DIFERENCA = %d\n",DIFERENCA);

    return 0;
}



~~~~~~Happy Coding~~~~~~

No comments

Powered by Blogger.