# 標準入力から整数 N を受け取ります n = int(input()) # N の 2 乗を計算します result = n * n # 結果を出力します print(result)