Meniu

#1282 radical

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

int main(void)
{
  int n;
  cin>>n;
  cout<<sqrt(n);
  return 0;
  }