Task 10
Write a Python program that takes a string as input from the user, removes the characters at even indices, and prints the resulting string in uppercase.
Sample Input 1:
String
Sample Output 1:
TIG
Explanation: The characters 'S', 'r', and 'n' are at index positions 0, 2, and 4 respectively. Hence, they are removed, and the remaining characters 'tig' are capitalized, giving us the output 'TIG'.
Sample Input 2:
abcd
Sample Output 2:
BD