Write a program that reads two positive float numbers and displays the sum of their integer and decimal parts. Use only two float variables.
Sample Input1:
1.23 9.55
Sample Output1:
10
0.78
Sample Input2:
2.23 10.79
Sample Output2:
13
0.02
References: C From Theory