#include <iostream>
using namespace std;

int main() {
    constexpr double kPi = 3.14;
    constexpr double kPi2 = 2.0*kPi;
    cout << kPi2;
}