A, B, C = map(int, input().split()) assert 1 <= A <= 1000 assert 1 <= B <= 1000000 assert 1 <= C <= 1000 print(min(A * C, B))