#include <iostream> 

int main() 
{ 
  int i = 2; 

  std::cout << (i << 2) << std::endl; 
} 
