#include using namespace std; // This assignment is worth 3 points. int value, shift; int main() { cout << "Enter a number and bits to shift: "; cin >> value >> shift; cout << "Left shift " << shift << " bit(s): " << (value << shift) << endl; cout << "Right shift " << shift << " bit(s): " << (value >> shift) << endl; return 0; }