Skip to content
Snippets Groups Projects
14.py 97 B
arr = [int(i) for i in input().split()]
p = int(input())
for i in arr:
    print(i ** p, end=" ")