#include using namespace std; using G=vector>; typedef long long ll; #define rep(i,l,r) for(int i=(l);i<(r);++i) int main(){ string s; cin>>s; int k=s.find("/"); int a=stoi(s.substr(0,k)); int b=stoi(s.substr(k+1,s.size())); cout<<(double)a/b<