Given a string (of maximum length 1000) representing a large number, the output is modulo 11.
Input Format:
A large number is in the form of a string.
Output Format:
Return the remainder modulo 11 of the input value.
Example:
Input:
121
Output:
0
Explanation:
121 mod 11 = 0
Solution:
Coming....