x = int(input("Podaj potęgę: "))
a = 2**x
print("a^" + str(x) +" = " + str(a))
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
x = int(input("Podaj potęgę: "))
a = 2**x
print("a^" + str(x) +" = " + str(a))