'''
Online Python Interpreter.
Code, Compile, Run and Debug python program online.
Write your code in this editor and press "Run" button to execute it.
'''
class MakeUpper():
@staticmethod
def make(text):
result = text[0].upper() + text[1:]
return result
print(MakeUpper.make("text"))