#include <stdio.h>

int main( void )
{
	double x;
	scanf( "%lf", &x );
	
	x = x + 10;
	
	printf( "%f\n", x );
	
	return 0;
}
