Jun-17-2019, 05:56 PM
x=int(input('Enter x= ')
if x%2 == 0:
if x%3 == 0:
print('Divisible by 2 & 3')
elif
print('Divisible by 2 but not 3)
else
print('Divisible by 3 but not 2)
print('')What is the issue in this?
