#include <stdio.h>

int main() {
    float t;
   while ((scanf("%f",&t)==1)) {
        if(t>0)
            printf("1\n");
        else if(t<0)
            printf("0\n");
        else
            printf("0.5\n");
        
    }

    return 0;
}