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;
}
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
Post a Comment