Submission
Status:
[PPPPPPP]
Score: 100
User: Namkhing
Problemset: คิดถึงแม่
Language: cpp
Time: 0.002 second
Submitted On: 2025-04-10 23:48:29
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(nullptr)->ios_base::sync_with_stdio(false);
int n;
cin >> n; n--;
cout << (n + 6) % 7 + 1;
}