#!/usr/bin/env python3

import sys

def main():
  print("Hello, world!")
  print("This is a test.")
  print("This is another test.")
  print("This is a third test.")
  print("This is a fourth test.")
  print("This is a fifth test.")

if( __name__ == "__main__"):
  main()