别再用switch之类的搞啦!可以这样轻松搞定!

#include <iostream>
using namespace std;

int main() {
    int a, b;
    cin>>a>>b;
    cout<<(a+b-1)%7+1;
    return 0;
}