#40510: _C++


1121228@stu.wghs.tp.edu.tw (你知道我是誰嗎!!??)


#include <iostream>
#include <cmath>
using namespace std;
int main() {
  int a;
  float b;
  cin >> a;
  cin >> b;
  float c = a / (b * b);
  printf("%.1f", c);  //四捨五入到十分位並印出
  return 0;
}