#include <fenv.h>
#include <stdio.h>

int main() {
        double a = 15.467;
        fesetround(FE_DOWNWARD);
        printf("%.1lf", a);
}
