Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. from math import sqrt
  2. from sys import stdin
  3. mas = []
  4. for i in stdin:
  5.     for j in i.split():
  6.         mas.append ( float ( j ))
  7. for i in range ( len ( mas ) - 1 , -1 , -1):
  8.     print( "%.4f" % sqrt(mas [ i ]))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement