Read n lines, reverse each word individually. Example: "hello world" => "olleh dlrow"
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
1 hello world
Output
olleh dlrow