import Foundation extension Int { func cbrt() -> Int { Int(SwiftGlibc.pow(Double(self), 1 / 3)) } func pow(fakeSignature: Void) {} } print(2023.cbrt())