x,y=map(int,input().split()) ans1=(x+4)%12 ans2=(x-4)%12 ans=-1 if ans1==y:ans=ans2 else:ans=ans1 print(ans)