errorType / 9.py
Beuys's picture
Upload 47 files
e16247a verified
raw
history blame contribute delete
204 Bytes
name=print(input())
a=float(input())
v=float(input())
x=(v*v)/(2*a)
print('The acceleration of %s is %.2f M/s,the take-off speed is %.2f M/s,and the shortest take-off runway length is %.2f M')(name,a,v,x)