a = input("").split() for i in a: if i.isdigit(): i = int(i) print(i * 2) else: print(i)