#include int main() { unsigned short j, k, m; j = 51; k = j << 3; m = j >> 3; printf("%d %d %d\n", j, k, m); return 0; }