li = list(map(int, input().split())) sm = sum(li[::2]) if sm % 2: ans = ":-(" else: ans = ":-)" print(ans)