#include using namespace std; using ll = long long; #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define ALL(v) (v).begin(), (v).end() #define p(s) cout<<(s)<> a >> b; double ans = 2 * acos(-1) * (b-a); cout << setprecision(15); p(ans); return 0; }