I have been searching around to check why was it that at line 7 there was a TypeError that says that my arguments are not converted during string formatting but to avail.
sys.argv is automatically a list of strings. Typecast it using
int(value)
when using it to use it as an integer.