#include<iostream> using namespace std; int main() { int a=14,b,c; b=a>>1; cout<<"b="<<b<<endl; c=a<<1; cout<<"c="<<c<<endl; return 0; }