# 1004 - Produto Simples

## Descrição

{% embed url="<https://www.urionlinejudge.com.br/judge/pt/problems/view/1004>" %}

## Solução

Vide problemas [1001 - Extremamente Básico](https://xtecna.gitbook.io/solucoes-da-beecrowd/iniciante/untitled) e [1003 - Soma Simples](https://xtecna.gitbook.io/solucoes-da-beecrowd/iniciante/1003-soma-simples).

{% tabs %}
{% tab title="C99" %}

```c
#include <stdio.h>

int main(){
    int A, B;

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

    return 0;
}
```

{% endtab %}

{% tab title="C++17" %}

```cpp
#include <iostream>

using namespace std;

int main(){
    int A, B;

    cin >> A >> B;
    
    cout << "PROD = " << A * B << endl;

    return 0;
}
```

{% endtab %}

{% tab title="JavaScript 12.18" %}

```javascript
let input = require("fs").readFileSync("/dev/stdin", "utf8");
let lines = input.split("\n");

let A = parseInt(lines.shift());
let B = parseInt(lines.shift());

console.log(`PROD = ${A * B}`);
```

{% endtab %}

{% tab title="Python 3.9" %}

```python
A = int(input())
B = int(input())

print(f"PROD = {A * B}")
```

{% endtab %}
{% endtabs %}
