#include <math.h>
#include <stdio.h>

int main () {
		int i = 2;
                if( -10*abs(i-1) == 10*abs(i-1) ) {
                                printf ("OMG,-10==10 in linux!\n");
		}else {
                                printf ("nothing special here\n");
		}
}

