#include <iostream>
using namespace std;

int main() {
	int a , b;
	cin >> b;
	a = b / 10;
	cout << a;
	return 0;
}