#include <stdio.h>

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