A, B, C = map(int, input().split()) if A * C <= B: print(A*C) else: print(B)