#include using namespace std; int main() { // cin.tie(0)->sync_with_stdio(0); double A; int B; scanf("%lf/%d", &A, &B); cout << A / B << endl; }