#include <iostream>
#include <cmath>
using namespace std;


int main(){
    float x = 2.958;
    cout << floorf(x * 100) / 100;
    return 0;
}
