n = int(input()) a = list(map(int, input().split())) ans = 1000 for x in a: ans *= 1000 - x ans /= 1000 print(1000 - ans)