#include <iostream>
using namespace std;

int main() {
	float a = 5/3;
	cout << a << endl;
	return 0;
}