Write a segment of code (not an entire program) that reads a line of characters from the user and outputs "too long" if the user enters more than 5 characters (not counting hitting the enter/return key). Print exactly what the user entered (including the new line) otherwise. For example, if the user enters "abcde" and hits return, then just print "abcde". If instead the user enters, for example, "123456" and hits return, then print "too long".