#include <stdio.h>
int main(){
    int a=100,x;
    scanf("%d",&x);
    printf("%d",x*a);
    return 0;
}