using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace programPractice { class Program { static void Main(string[] args) { int birth = Int32.Parse(Console.ReadLine()); Console.WriteLine(2017-birth); } } }