Company: philips_14march
Difficulty: medium
Project Launch Problem Description As a project manager, Emily is overseeing the launch of several marketing campaigns. She has X different campaign ideas and can combine these ideas to create a powerful new marketing strategy. She can use at most Y ideas in any combination to craft a new marketing approach. Your task is to help Emily determine how many different marketing combinations she can craft from the existing campaign ideas and return an integer representing the total number of possible strategies, including the original ideas. Note: Return answer modulo 10000. Input Specification: input1: An integer value X, representing the number of different campaign ideas. input2: An integer value Y, representing the maximum number of ideas that can be used to create a new marketing strategy. Output Specification: Return an integer value representing the total number of marketing strategies (new combinations and original ideas). Examples Example 1: Input: input1 = 5, input2 = 3 Output: 25