Coursework 1

Password Strength

An institution uses the following rules to classify the strength of passwords: You need to write code that will take input of a string from the keybord and will print the strength of that string as a password, according to the rules given above. So it should output one of the strings WEAK, STRONG or MEDIUM

Note:
Make sure your outputs are exactly the strings WEAK, STRONG or MEDIUM (all in capital letters) otherwise you will lose marks.

Examples:

Examples
INPUT OUPUT*
hello WEAK
7Kings8all9Pies STRONG
brandon123 MEDIUM

Template file: