#include <iostream>
#include <cmath>

using namespace std;

int main() {
	double x = -2.1;
	cout << (x - floor(x)) << endl;
}