My issue
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone
if A%2 == 0 and C%2 == 0:
print(‘Both A and C are even’)
elif A%2 != 0 and C%2 != 0:
print(‘Both A and C are odd’)
else:
print(‘A is odd and C is even or vice versa’)