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 %