Practical Assignment - 2 Following flowchart is for adding father's and brother's income and printing the total income Rearrange the symbols in correct sequence. T=F+B Stop Get Father's Income F Get Brother's Income B Display T Start
Answers
Answered by
0
Answer:
f = float(input("Enter fathers income:"))
b = float(input("Enter brothers income:"))
total = f + b
print("The combined income of father and brother is",total)
Explanation:
Similar questions