def fun(a, b, c): return min(b, a * c) a, b, c = map(int, input().split()) print(fun(a, b, c))