/* * bc_04_math.c * * Description: Examples of arithmetic operations in C * Date: May 2022 * Author: Katia Bulekova * */ #include int main() { int i, j, k; printf(" Enter the value of i: "); scanf("%d" ,&i); printf(" Enter the value of j: "); scanf("%d",&j); k = i + j; printf("%d\n", k); return 0; }