#include <math.h>
#include <stdio.h>

int main() {
    double age,a;
    scanf("%lf",&age);
    a=3.156*pow(10, 7);
    printf("%.0lf",age*a);
    return 0;
}