Submission

Status:

[PPPPPPP]

Subtask/Task Score:

{100/100}

Score: 100

User: koon

Problemset: คิดถึงแม่

Language: cpp

Time: 0.003 second

Submitted On: 2025-11-04 22:19:01

#include <iostream>
#include <string>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    cout << (n+5)%7+1;
    return 0;
}