package com.infendro.otp.util import kotlin.math.pow internal fun Int.pow(x: Int): Int = this.toDouble().pow(x).toInt()