public class Print
{
  public static void main(String args[])
  {
    int i = 10;
    int j = 20;
    System.out.println((double)i + j);
  }
}
