#include<iostream> #include<iomanip> using namespace std; int main(){ double a,b; cin>>a>>b; //保留2位小数输出 printf("%.2lf",a/b); return 0; }