import std.stdio: writeln, readln; import std.string: chomp; import std.conv: to; void main(){ writeln(readln.chomp.to!int ? 0 : 1); }