My issue
My code
n= input()
m= input()
if(n>m):
print(n-m)
else:
print(n+m)
Problem Link: DIFFSUM Problem - CodeChef
n= input()
m= input()
if(n>m):
print(n-m)
else:
print(n+m)
Problem Link: DIFFSUM Problem - CodeChef
the Sample Input of the problem is wrong. If you just submit your solution, it will be accepted.