Rewrite the following function so that the following conditions are
satisfied:
A) the multiplication operator ('*') is not used.
B) the division operator ('/') is not used.
C) the function does not make use of loops.
D) And no sneaky using assembly either!

int MultiplyBy321(int value)
{
int rslt;

rslt = value * 321;

return rslt;
}

how would something like that be done?