#include <stdio.h>
int main()
{
// 1. Write a program to that performs as calculator ( addition, multiplication,
// division,
// subtraction).
printf("\t\tCalculator");
printf("\n=====================================================");
float a, b;
printf("\n\nEnter A : ");
scanf("%f", &a);
printf("\nEnter B : ");
scanf("%f", &b);
printf("\n_____________________________________________________");
printf("\n\nAddition of A (%.2f) And B (%.2f) is : %.2f", a, b, a + b);
printf("\n\nSubtraction of A (%.2f) And B (%.2f) is : %.2f", a, b, a - b);
printf("\n\nMultiplication of A (%.2f) And B (%.2f) is : %.2f", a, b, a * b);
printf("\n\nDivision of A (%.2f) And B (%.2f) is : %.2f", a, b, a / b);
printf("\n_____________________________________________________\n\n");
return 0;
}