#include <iostream>
#include <cmath>
using namespace std;

int main() {
	int i = 16;
	int j = std::sqrt(i);
	cout << j << "\n";
}