#include <stdio.h>

int main() {
  char x = 100;

  printf("%d\n",~x);
  return 0;
}
