#include <stdio.h> 
int main()
{
     int test = 0;
     float fvalue = 3.111f;
     printf("%f",test ? fvalue : 0);

     return 0;
}