#include <iostream>
#include <math.h>
using namespace std;

int main() {
	float f = 2*cosf(1.57079637f);
	cout << f;
	return 0;
}