#include using namespace std; int main() { // 1. 入力情報取得. int N; cin >> N; // 2. 出力 ~ 後処理. int ans = N - 1; cout << ans << endl; return 0; }