#include<stdio.h> int main(){ int a,b,c; a = 2; b = 4; c = a + b; c = a - b; c = a * b; c = a / b; return 0; }