1004 - Produto Simples

Quase igual ao problemas 1001 - Extremamente Básico e 1003 - Soma Simples.

Descrição

Solução

Vide problemas 1001 - Extremamente Básico e 1003 - Soma Simples.

#include <stdio.h>

int main(){
    int A, B;

    scanf("%d\n%d", &A, &B);
    
    printf("PROD = %d\n", A * B);

    return 0;
}

Last updated