mod = 1000000007 eps = 10**-9 def main(): import sys input = sys.stdin.readline N = int(input()) print((N-1) ** 2) if __name__ == '__main__': main()