Write a program to read an integer value, 'n' from the standard input (STDIN) and print the output to the standard output (STDOUT) based on the given rules: 1. If 'n' is a multiple of 3, print 1. 2. If 'n' is a multiple of 5, print 2. 3. If 'n' is a multiple of both 3 and 5, print 3. 4. If none of the above rules match, print 0. Ensure that you do not print any additional greeting messages in your output. Example: Input: 16 Output: 0 Explanation: 16 is neither a multiple of 3 or 5, hence the output is 0. Sample input 15 Sample Output 3 Instructions : Program should take input from standard input and print output to standard output.