#!/usr/bin/python3 import time def main(): gm_time = time.asctime() print(gm_time) return(gm_time) if __name__ == "__main__": main()