Alright let's talk about the static keyword!
Variables and methods that have static in their introduction belong to the class instead of a specific instance.
Good stuff! Because triple() is a static method, we can use it without creating an instance of MyApp.
Psst: did you notice that we never created an instance of System before we used the print() method? Well, that's because print() is also static.
Don't we already have a return type?