#include<stdio.h>
#include<math.h>
int main(){
    double a,b;
    scanf("%1f",&a);
    b=a*(3.14/180);
    printf("%,2f",b);
    return 0;
}