/**** File 'pass_composition.c' ****/

#include <stdio.h>
#include <stdlib.h>
int main() {
   int a;
   int b = 1;
   int c = 0;
   c += 2;
   int decomp_0;
   decomp_0 = c < 2;
   if(decomp_0) {
      c = 2;
   }
   
   return 0;
}

/**** End File ****/