Submission
Status:
PPPPPPPPPPPPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: faofao
Problemset: ปฏิทินวันแม่
Language: cpp
Time: 0.004 second
Submitted On: 2026-08-16 20:26:16
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main(){
ios::sync_with_stdio(),cin.tie(0);
int m,d;cin>>m>>d;
int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
for(int i=m;i<=12;i++){
d+=month[i];
}
d-=2;
d%=7;
if(d==0) d=7;
cout<<d;
}