#include <stdio.h>

int main() {
    int a;
    long long b;
    scanf("%d",&a);
    b=a*1024*1024/4;
    printf("%d",b);
    
    return 0;
}