#include<stdio.h>
#include<math.h>
double degrees_to_radiants(double degrees){
    return degrees * (acos(-1) / 180.0);
}
int main(){
    double theta;
    scanf("%lf",&theta);
    printf(".2f\n",degrees_to_radians(theta));
    return 0;
}