提交时间:2025-02-09 21:37:48

运行 ID: 308846

#include<bits/stdc++.h> using namespace std; int main() { double x1,x2,a,b,s; cin>>x1>>x2; a=x1*x1*3.14; b=x2*x2*3.14; s=a-b; cout<<fixed<<setprecision(0)<<s<<endl; return 0; }