Lösung LU02.A06

def main():
    # write your code below this line
    first = int(input('Give the first number:\n'))
    second = int(input('Give the second number:\n'))
    #print(str(first) + ' * ' + str(second) +' = '+ str(first*second))
    print(f'{first} * {second} = {first*second}') # using fstring
 
if __name__ == '__main__':
    main()