Guessing game

Report a typo

You are playing a guessing game with a user. Imagine that you came up with an integer stored in a variable set_number.

Check if set_number is equal to the product of two integers entered by the user.

The input format:

Two lines containing integer numbers for you to multiply.

The output format:

True if the user guessed correctly and False otherwise.

Sample Input 1:

3
11

Sample Output 1:

False
Write a program in Python 3
set_number = 6557
___

Create a free account to access the full topic