#include #include int main() { int a, b, c; a = 3; b = 2; c = a + b; printf("%d\n", c); return EXIT_SUCCESS; }