Check if a large number is divisible by 2, 3 and 5 or not
Given a number, the task is to check if a number is divisible by 2, 3, and 5 or not. The input number may be large and it may not be possible to store even if we use long long int, so the number is taken as a string.Examples: Input : str = "725" Output : NO Input : str = "263730746028908374890" Outp