#include <stdio.h>
int main() {
    int x, N; 
    scanf("%d %d", &x, &N);
    if ((x + (N % 7)) % 7 == 0) {
        printf("7");
    } else {
        printf("%d", (x + (N % 7)) % 7);
    }
    return 0;
}