#include <stdio.h>

// struct Dive
// {
// 	int num1;
	
// 	int num2;
	
// 	float res;
// };

// void input(struct Dive *);

// int main(void) {
// 	// your code here
// 	struct Dive D1;
	
// 	// scanf("%d %d", &D1.num1, &D1.num2);
	
	
	
// 	return 0;
// }

// void input(struct Dive Dptr[])
// {
// 	scanf("%d %d", (*Dptr).num1, 
// }
int main()
{
	int num1, num2;//declaring the varible
	
	scanf("%d %d", &num1, &num2);//read num1 and num2 from the user
	
	if(num2)
	{
		printf("%g", num1/num2);
	}
	else
	{
		printf("denominator can not be zero");
	}
	
	return 0;
}