#include <stdio.h>

int main() 
{
int a,b;
int c;
scanf("%d %d",&a,&b);
c=a+b;
while(c>=100)
{
    c=c-100;
} 
    printf("%d",c);
    return 0;
}