#include<stdio.h>
#include<math.h>
double degreesToRadians (double theta){
    return theta * (M_PI/180);
}
int main() {
    double theta;
    scanf("1f", &theta);
    double radius = degreesToRadius(theta);
    printf("%.2lf\n",radius);
    return 0;
}