My issue
CAN YOU PLEASE ,SAY THE MISTAKE HERE
My code
# cook your dish here
N1,N2=map(int, input().split())
if N1>N2 and -1000<=N1<=1000 and -1000<=N2<=1000:
print(N1-N2)
else:
print(N1+N2)
Problem Link: Sum OR Difference Practice Coding Problem - CodeChef