#include <stdio.h>
int main(){
  int value;
  value= 7+4*2%6*4;
  printf(" Value = %d \n",value);
  return 0;
}

