2374 - Pneu
Igualzinho ao 1007 - Diferença.
Descrição
Solução
Vide 1007 - Diferença.
#include <stdio.h>
int main(){
int N, M;
scanf("%d %d", &M, &N);
printf("%d\n", M - N);
return 0;
}
Last updated
Was this helpful?