Submission

Status:

[PPPPPPP]

Subtask/Task Score:

{100/100}

Score: 100

User: scxtti3h

Problemset: คิดถึงแม่

Language: cpp

Time: 0.002 second

Submitted On: 2025-12-10 20:09:37

/*
    AUTHOR : Scxtti3h
    Task   : c1_bkk67_3
    Date   : 10/12/2568
*/

#include <bits/stdc++.h>
using namespace std;

int main(){
    int x;
    cin.tie(nullptr)->sync_with_stdio(false);
    cin >> x;
    if(x-1<1){
        cout << 7-(x-1);
    }
    else{
        cout << x-1;
    }
    return 0;
}