#include <stdio.h>
#include<conio.h>
void main();
int a;
a=98;
int b;
b=98;
c=a+b;
printf("%d",c);
}