#include <stdio.h>
int addition()
{
int a , b , c;
a = 10;
b = 20;
c = a + b;
printf("C = %d", c);
return 0;
}