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