Uri solution 1007 Difference

#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;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes