c = float(input())
x = 0.1
while x <= 1:
print("%.1f %8.2f" % (x, c * x))
x += 0.1
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
c = float(input())
x = 0.1
while x <= 1:
print("%.1f %8.2f" % (x, c * x))
x += 0.1