110k views
3 votes
Read 2 one-byte numbers. Multiply number 1 * number 2. Print the result

Sample Input

2 4

output

8

User Nahtnam
by
6.9k points

1 Answer

3 votes

Answer:

Here's a C++ code that reads two one-byte integers, multiplies them, and outputs the result:

#include <iostream>

int main() {

int num1, num2;

std::cin >> num1 >> num2;

std::cout << num1 * num2 << std::endl;

return 0;

}

Step-by-step explanation:

For the sample input 2 4, the output will be 8.

User Jbrond
by
8.2k points