#include<stdio.h>

int main()
{
        int A=70,B=50;
        printf("The sum of %d and %d is %d",A,B,A+B);
        printf("\nThe subtraction of %d and %d is %d",A,B,A-B );
        printf("\nThe multiplication of %d and %d is %d",A,B,A*B);
        printf("\nThe result devision of %d and %d is %d",A,B,A/B);
        printf("\nThe remainder of %d and %d is %d",A,B,A%B);

        return 0;
}