#inclde <stdio.h>
#include <math.h>
int main(){
    int x,y;
    printf("Enter a number :");
    scanf("%d",x);
    printf("The number you enter is %d",x);
    
    printf(Enter one more number);
    scanf("%d",y);
    printf("The number you enter is %d",y);
    
    int max=(x+y+abs(x-y))/2;
    printf("The larger number is %d\n",max);
    printf("THe smaller one is %s\n",x+y-max);
    
}

