Submission
Status:
[PPPPPPP]
Score: 100
User: brightokung
Problemset: คิดถึงแม่
Language: cpp
Time: 0.002 second
Submitted On: 2024-12-09 20:45:03
#include<iostream>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
if(n==1)
{
cout << 7;
}
else
cout << n-1;
}