#include <iostream>
using namespace std;

int main()
{
    unsigned short sh = 0xA07F; 
 sh = sh << 4; 
 cout << dec << sh << endl;
 return 0;
}