def is_even(number): """引数で与えられた数値が偶数か判定""" if number % 2 == 0: return True else: return False if __name__ == "__main__": bottoms = [] # 1をはじめとしてタピオカミルクティの本数分ループ for i in range(1, CONTAINER_NUMBER+1): bottom = int(input()) index = int(input()) bottoms.append(copy.deepcopy(bottom)) # 底の値より均等に分けられるかどうか判定 if check_divide_even(bottoms): print(":-)") else: print(":-(")