---
category_name: school
problem_code: FSQRT
problem_name: 'Finding Square Roots'
languages_supported:
- ADA
- ASM
- BASH
- BF
- C
- 'C99 strict'
- CAML
- CLOJ
- CLPS
- 'CPP 4.3.2'
- 'CPP 4.9.2'
- CPP14
- CS2
- D
- ERL
- FORT
- FS
- GO
- HASK
- ICK
- ICON
- JAVA
- JS
- 'LISP clisp'
- 'LISP sbcl'
- LUA
- NEM
- NICE
- NODEJS
- 'PAS fpc'
- 'PAS gpc'
- PERL
- PERL6
- PHP
- PIKE
- PRLG
- PYPY
- PYTH
- 'PYTH 3.4'
- RUBY
- SCALA
- 'SCM chicken'
- 'SCM guile'
- 'SCM qobi'
- ST
- TCL
- TEXT
- WSPC
max_timelimit: '1'
source_sizelimit: '50000'
problem_author: karthikv1392
problem_tester: null
date_added: 29-04-2015
tags:
- karthikv1392
time:
view_start_date: 1436519986
submit_start_date: 1436519986
visible_start_date: 1436519986
end_date: 1735669800
current: 1492507622
layout: problem
---
All submissions for this problem are available._In olden days finding square roots seemed to be difficult but nowadays it can be easily done using in-built functions available across many languages_ .
Assume that you happen to hear the above words and you want to give a try in finding the square root of any given integer using in-built functions. So here's your chance.
### Input
The first line of the input contains an integer T, the number of test cases. T lines follow. Each T contains an integer N whose square root needs to be computed.
### Output
For each line of input output the square root of the input integer.
### Constraints
1 1
<pre><b>Input:</b>
3
10
5
10000
<b>Output:</b>
3
2
100
</pre>