#include<stdio.h> #include<math.h> int main(){ int n; scanf("%d",&n); int num; num=(int)pow(2.0,18)*n; printf("%d",num); return 0; }