<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import main

my_day = 1
other_day = 1
my_hour = 0
other_hour = 0

testoutput = open("test_output.txt", "w" , encoding="utf-8")

for i in range(31):
    
    for j in range(31):
        
        print("------------------------------------------------------------", file=testoutput)
        print(" ", file=testoutput)
        print ("My day of month: " + str(my_day), file=testoutput)
        print ("Other user's day of month: " + str(other_day), file=testoutput)
        print(" ", file=testoutput)
        print("Begin exhaustive test:", file=testoutput)
        
        for k in range(24):   
            
            for l in range(24):
                print(" ", file=testoutput)
                print("My hour: " + str(my_hour), file=testoutput)
                print("Other user's hour: " + str(other_hour), file=testoutput)
                print("Time Difference: " + main.get_hr_diff(my_day, other_day, my_hour, other_hour), file=testoutput)
                print(" ", file=testoutput)
                
                other_hour += 1
            
            other_hour = 0
            my_hour += 1
        
        my_hour = 0
        other_day += 1
    
    other_day = 0    
    my_day += 1
    
testoutput.close()</pre></body></html>