Submission
Status:
[PPPPPPP]
Subtask/Task Score:
{100/100}
Score: 100
User: NovemNotes
Problemset: คิดถึงแม่
Language: cpp
Time: 0.002 second
Submitted On: 2025-10-15 11:40:40
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);
int n;cin >> n;
cout << (n-1==0? 7 : n-1) << "\n";
return 0;
}