public class srgf {

public static void main(String args[])
{
short a =1;
short b=1;
short c=a+b;
System.out.println(c);
}