#include<stdio.h>
void main()
{
int x=-45,y=3;
printf("x右移y位的值是%d\nx左移y位的值是%d\n",x>>y,x<<y);
}