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