#include<bits/stdc++.h>
using namespace std;
int main() {
    int x,y;
	cin>>x>>y;
	int sum =100;
	sum+=(int)sqrt(x);
	cout<<sum;
}