#include #include int main(void) { int a=10,b=3,c=5; a %= b; b *= a+c; c >>= 2; printf ("%d %d %d",a,b,c); return 0; }