Submission
Status:
[PPPPPPP]
Subtask/Task Score:
{100/100}
Score: 100
User: gs
Problemset: คิดถึงแม่
Language: cpp
Time: 0.003 second
Submitted On: 2025-12-07 20:46:42
#include <iostream>
#include <string>
using namespace std;
int main() {
// Write C++ code here
int day;
cin >> day;
day = day - 1;
if(day == 0){
day = 7;
}
cout << day;
}