#include<stdio.h>  
#include<math.h>
int main(){
    float degree;
    scanf("%f",&degree);
    float radians = degree * M_PI / 180;
    printf("%2f", radians);
    return 0;
}