using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using static System.Console; using static System.Math; namespace CP { class Atria { static void Main(string[] args) { int n = int.Parse(ReadLine()); WriteLine(n == 1 ? 0 : 1); } } }