Very odd

Report a typo

Find out if the result of dividing A by B is an odd number.

The input format:

The first line is the dividend (A) and the second line is the divisor (B). It is guaranteed that the numbers are divided without remainder.

The output format:

True or False

Please, don't specify anything inside the input() function when reading the numbers.

Tip: The easiest way to check if a number is odd or even is to use modulo division with %

Sample Input 1:

99
3

Sample Output 1:

True
Write a program in Python 3





___

Create a free account to access the full topic