using System;
public class Program
{
public static void Main()
/*
GOAL:
Determine if user password is long enaugh.
TIPS:
Ask the user to provide a new password.
Read user input and check if the provided password has minimum length of 8 characters.
Use string "Length" property and "if-else" block to return to console a proper message.
Either: "Your password length is good enaugh"
Or: "Your password is too short"
Getting the length of string:
string smth = "SomePassword";
int length = smth.Length;
If-else block:
if (<conditions-bool>)
// do something here when the condition is True
}
else
// do something here when the condition is False
*/