Submission
Status:
[PPPPPPP]
Subtask/Task Score:
{100/100}
Score: 100
User: modx9572
Problemset: คิดถึงแม่
Language: cpp
Time: 0.002 second
Submitted On: 2025-10-12 13:16:05
#include <stdio.h>
int main(){
int n;
scanf("%d",&n);
if(n==1){
printf("7");
}
else{
printf("%d",n-1);
}
}