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