Create a Go program that takes as an input an int type number num and then uses two formatted print statements to output the hexadecimal (base 16) value of num with lower-case and upper-case letters (each value must be in a separate line).
You can look at the Integer verbs section from the official Go docs to see what formatting verb allows you to print base 16 values!
Tip: The %x and %X verbs allow you to output the hexadecimal (base 16) values of an int number