int main(void){
  int a, b, c, d, e, f;
  a = 0;
  b = 1;
  c = a + b;
  d = a - b;
  e = a * b;
  f = a / b;
  return(0);
}