/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
산술연산자 + - * / %
비교연산자 > < >= <= == !=
논리연산자 ! &&그리고 ||또는
#include <stdio.h>
int main()
{
int t;
scanf("%d",&t);
if(t>=90 && t<=100)
{
printf("A");
}
else if(t>=70 && t<=89)
{
printf("B");
}
else if(t>=40 && t<=69)
{
printf("C");
}
else
{
printf("D");
}
return 0;
}
정수 / 정수 -> 정수 (몫)
10 / 3 -> 3.3333333 (x)
1 / 2 -> 0
3 / 4 -> 0
#include <stdio.h>
int main()
{
int a,b,c,d;
scanf("%d %d %d %d",&a,&b,&c,&d);
if((double)a/b<(double)c/d)
{
printf("<");
}
else if((double)a/b>(double)c/d)
{
printf(">");
}
else
{
printf("=");
}
return 0;
}
a 45
a/10 4
a%10 5
a 789
a/10 78
a%10 9
a/100 7
a%100 89
f 790101
f/10000 79
*/
#include <stdio.h>
int main()
{
int f,s,y;
scanf("%d %d",&f,&s);
f=f/10000;
if (s==1 || s==2)
{
y = 1900+f;
}
else
{
y = 2000+f;
}
printf("%d",2012-y+1);
return 0;
}