#include<bits/stdc++.h>
using namespace std;
int main(){
	float a,b,n;
	cin>>n;
	a=n%10;
	b=n/10;
	n=b/a;
	cout<<n; 
	return 0;
}
/**************************************************************
	Problem: 1607
	User: panyuchen
	Language: C++
	Result: Compile Error
****************************************************************/