laflame
Aryan Shahane, Sugamay Gakhar, Jishnu Ganisetti
def calculate_sum(num1, num2): return num1 + num2
num1 = float(input("Enter the first number: ")) num2 = float(input("Enter the second number: ")) result = calculate_sum(num1, num2) print("The sum is:", result)
Log in or sign up for Devpost to join the conversation.