#include <stdio.h>

int main(int argc, char *argv[]) {
	double x = 1.0/3.0;
	printf("%.32f\n", x);
	return 0;
}