import sys arr = [int(i) for i in input().strip().split()] def dfs(arr, path, used): if len(path) == 4: return check(path) for i in range(0, len(arr)): if used[i]: continue used[i] = True path.append(arr[i]) if dfs(arr, path, used): return True path.pop() used[i] = False return False def check(arr):...