Write a program to reverse only the individual words in a given sentence while maintaining their original order.
Implement the function below. Words are separated by one or more whitespace characters, and the returned sentence should use single spaces between words. Preserve punctuation as part of each word.
Input: a string sentence. Output: a string containing the words in their original order, with each word's characters reversed.
def reverse_words(sentence):