#!/usr/bin/python3

# A module that formats the output in a readable format
import pprint

def main():
  print("Welcome to the practical assignments")

if __name__ == "__main__":
  main()