#include <stdio.h>

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