# template for the course Functional Python 101

def get_answer(n):
	return n * 2

def main():
	n = int(input())
	print(get_answer(n))

main()
