#include<iostream>
using namespace std;
int main()
{
int x = 0;//周几
int n = 0;//延期n天
cin >> x >> n;
cout << ((x + n) % 7) % 7 << endl;
cout <<" x= "<< x <<" n= "<< n << endl;
system("pause");
return 0;
}
#include<iostream>
using namespace std;
int main()
{
int x = 0;//周几
int n = 0;//延期n天
cin >> x >> n;
cout << ((x + n) % 7) % 7 << endl;
cout <<" x= "<< x <<" n= "<< n << endl;
system("pause");
return 0;
}