#include <stdio.h>
#include<math.h>
int main() {
    int n,x;
    scanf("%d",&n);
    x=n*pow(2,20)/4;
    printf("%d",x);
}