# Author:
# Date:
# Description: 

# get the first and second integers
firstInput = int(input("Please enter the first integer: "))
secondInput = int(input("Please enter a second integer: "))

# A. print out "Fixing notation!"
# COMPLETE THE CODE

# B. Extract the integer and decimal portions from the first integer input
# COMPLETE THE CODE
# COMPLETE THE CODE

# C. Print the reformatted first input
# COMPLETE THE CODE

# D. Extract the integer and decimal portions from the second integer input
# COMPLETE THE CODE
# COPMLETE THE CODE

# E. Print the reformatted second input
# COMPLETE THE CODE

# F. Perform calculations for the product of the reformatted (decimal) values
# COMPLETE THE CODE
# COMPLETE THE CODE
# COMPLETE THE CODE
# COMPLETE THE CODE
# COMPLETE THE CODE

# G. Print out the final result
# COMPLETE THE CODE
