using System;
namespace DefaultProject
{
class MainClass
{
public static void Main (string[] args)
{
string str = "100";
string str1 = Console.ReadLine ();
int x = Convert.ToInt32 (str);
Console.WriteLine (x + str1);
Console.ReadKey ();
}
}
}