11. Write a program to read details like name, class, age of a student and then print the details firstly in same line and then in separate lines. Make sure to have two blank lines in these two different types of prints.

# Code
name = input('Enter name : ')
class_ = input('Enter class : ') # class is a keyword, so use class_
age = input('Enter age : ')
print(name, class_, age)
print('\n')
print(name)
print(class_)
print(age)