#include <stdio.h>

int main(void) {
 int a = 10, b = 4, c;                
                c = a *-b;      /* unary minus, negates the value of b */
                printf (" %i \n", c);
                return (0);
}