x = float(input())
y = 5/x + 2 * x
f = open('output.txt','w')
f.write(str(y))
f.close()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = float(input())
y = 5/x + 2 * x
f = open('output.txt','w')
f.write(str(y))
f.close()