#include<stdio.h>
#include<conio.h>
void main( ){
int A=7,B=2,C;
printf("\nsum of A and B = ");
printf("\nsum of A and B = %d",A+B);
printf("\nsum of A and B = %d",A);
printf("\nsum of A and B = %d",A+C);
C = A*B; printf("\nA multiply B = %d",C);
C = A/B; printf("\nA divided by B = %d",C);
getch( );
}