| 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) |
| 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) |