import java.util.Scanner; class SubtractChar { public static void main(String[] args) { int i = '1' - '0'; System.out.println( i ); } }