#!/usr/bin/python3 # -*- coding: utf-8 -*- import math x: float = float(input()) y: float = float(input()) # python's math import: print(math.sqrt(x)) print(math.pow(x, y)) # built-in: print(abs(x))