Write a Python program that accepts an integer (n) and computes the value of n+nn+nnn. I have used python 3.7 compiler for debugging purpose.
a = int(input("Input an integer : ")) num1 = int( "%s" % a ) num2 = int( "%s%s" % (a,a) ) num3 = int( "%s%s%s" % (a,a,a) ) print (num1+num2+num3)
17 July 2019 2179 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap