#include<stdio.h>
void add();
void iseven();
void main()
{
    add();
 iseven();
 add();
 add();
 add();
}
 
//function definition
void add()
{
    int a,b,c;
    printf("enter the two number:\n");
    scanf("%d %d",&a ,&b);
    c=a+b;
    printf("sum is %d",c);
    
 
}
void iseven()
{
    int x;
    printf("enter the number");
    scanf("%d",&x);
    if (x%2==0){
    printf("even");
    }
    else
    printf("odd");
}