#include <stdio.h>

int main() {
    int a, b;//定义两个变量比较好
    scanf("%d",&a);
    b=100*a;
    printf("%d\n",b);
    return 0;
}