#include <stdio.h>

int main() {
int x,fee;
scanf("%d",&x);
fee=x*100;
printf("%d",fee);
    return 0;
}