#include using namespace std; int main(){ long long x,y;cin>>x>>y; cout << x/y << "."; x*=10; for(int i = 0; 50 > i; i++){ cout << x/y%10; x %= y; x *= 10; } cout << endl; }