#include<bits/stdc++.h> using namespace std; int main() { double a,b,c; cin>>a>>c; b=a/c; printf("C=%.9lf",b); return 0; }