how to print the statement and result stored in int in same line in python code example
Example 1: python print variable and string
foo = "seven"
print("She lives with " + foo + " small men")
Example 2: python inline print variable
print(f'I have {a} {b}')