#include <stdio.h>

int main() {
    
    int n = 0;
    scanf("%d", &n);

    printf("%d", n * 1024 *1024 / 4);
    
    return 0;
}