#include<stdio.h>
int main()
{
    float x;
    scanf("%f",&x);
    float deg;
    deg=x (3.14/180);
    printf("%.2f",deg);
    return 0;
}