#include <stdio.h>
#include <math.h>

int main(void) {
	printf( "%.50lf\n", exp( -100.0 ) );
	return 0;
}
