#include <stdio.h>

int main() {
    int a,b,c;
    scanf("%d%d",&a,&b);
    c=(a+b)%100;//只保留两位
    printf("%d\n",c);
    return 0;
}