name =input("what is your name?")
sipCard =int(input("What is your sip card"))
twoforone =int(input("How many of the two for one deals would you like?"))
            
#monthly record
with open ("MonthlyRecord.txt")as f:
    f.write (name)
    f.write (sipCard)
    f.write (twoforone)
    f.close()

#open and read the file after the appending:
f = open("MonthlyRecord.txt", "r")
print(f.read())
