Find the Median

  • + 0 comments

    n, arr = int(input()), list(map(int, input().rstrip().split())) print(sorted(arr)[n//2])