class Main {
  public static void main (String[] args) {

    int c = 4;

    System.out.println (--c);
  }
}
// Output: 3