#include <stdio.h> int main() { int x, n; while (scanf("%d %d", &x, &n) != EOF) { printf("%d", (x + n) % 7 ? (x + n) % 7 : 7); } return 0; }