#include int main (void) { int rc = 0; signed int test = 0; const volatile signed short x3 = -12991; test = (x3*(signed int)29); if (test == -376739) { printf("@OK@\n"); printf("%d\n",test); } else { rc = 1; printf("@NG@\n"); printf("%d\n",test); } return rc; }