#include<stdio.h>
int maim()
{
    float deg;
    scanf("%f",&deg);
    float rad =deg*3.14159/180.0;
    printf("%.2f",rad);
    return 0;
}