/* 1.Даны целочисленные переменные А и В. Найти их сумму и вывести на экран. */ #include int getSum(int a, int b) { return a + b; } int main() { const int A = 3; const int B = 8; printf("Sum: %d", getSum(A, B)); return 0; }