mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
14 lines
155 B
C++
14 lines
155 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
double a;
|
|
double b;
|
|
cin >>a;
|
|
b=a*a/2.0/2.0;
|
|
printf("%.2f",b);
|
|
return 0;
|
|
}
|
|
|
|
|