#include int soma(int a, int b) { return a + b; } int main() { int x = 10; int y = 20; int r = soma(x, y); printf("Soma: %d\n", r); return 0; }