# take input
string = input('Enter any string: ')
# convert lowercase to uppercase
new_string =''
for i in range(len(string)):
if(string[i] >= 'a' and string[i] <= 'z'):
new_string = new_string + chr((ord(string[i]) - 32))
else:
new_string = new_string + string[i]
# print uppercase string
print('In Upper Case:',new_string)