#include <stdio.h>

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