#include<stdio.h>
int main(){
    float a,b;
    scanf("%f",a);
    b=a * M_PL / 180.0;
    printf("%.2f\n",b);
    return 0;
}