#include <iostream>
using namespace std;

int main() {
	float n;
	int m;
	scanf("%f%d", &n, &m);
	printf("%f", n / m);
}