Take two inputs from the user. One will be an integer. The other will be a float number. Then multiply them to display the output.

Hint: Use input() to take user input. By default, input returns a string. Use int() and float() to convert those inputs to numeric types, and then multiply them.

Take two numbers from the users. Calculate the result of second number power of the first number.

Hint: To raise a number to a power, use two asterisks (**). For example, 4**3 gives you 64.

Find the largest of the three numbers entered by the user.

Hint: Ask the user to enter three numbers. You can assume the first number is the largest and then check if the second or third number is larger. Or use max().

Take multiple numbers as input from the user in a single line and calculate the average.

Hint: Ask the user to input numbers separated by spaces. Use split() then convert to numbers.

Take the lengths of the three sides of a triangle from the user and calculate the area (Heron's formula).

Take the principal amount, annual interest rate, and duration in years as input. Compute the compound interest.

Hint: Amount = P*(1 + r/100)^t, then CI = Amount - P.

Take marks and their corresponding weights as input and calculate the weighted average mark.

Create all possible sentences by combining one word from each of three lists.

Generate a random password with at least one uppercase, one lowercase, one digit, and one special character.

Build a simple word completion game.