
xxxxxxxxxx
#Maths Fraction Hack Algorithm - www.101computing.net/maths-fraction-hack-algorithm/
a = int(input("Enter the numerator of the first fraction:"))
b = int(input("Enter the denominator of the first fraction:"))
print("First Fraction: " + str(a) + "/" + str(b))
# 1 - Complete the code here to enter the second fraction
# 2 - Complete the code here to calculate and compare the cross-products. Output which fraction is bigger
# 3 - Complete the code here to output the decimal value of both fractions
task_alt