#C7945. Contains All Digits

    ID: 51872 Type: Default 1000ms 256MiB

Contains All Digits

Contains All Digits

Given an input string, determine whether it contains every digit from \(0\) to \(9\) at least once. In other words, check if the set of characters in the string includes the entire set \(\{0,1,2,3,4,5,6,7,8,9\}\).

For example, if the input string is "1234567890", the output should be "True". However, if any digit is missing, the output should be "False".

inputFormat

The input is provided via standard input (stdin) as a single line string, which may include letters, digits, and special characters.

outputFormat

Output to standard output (stdout) a single line: either "True" (if the string contains every digit from 0 to 9) or "False" (otherwise).

## sample
1234567890
True