Breaking

Equal or not

#include<stdio.h>
#include<stdlib.h>
Void main()
{
    Int a, b;
  
    Printf("Enter a first number :");
    Scanf("%d",&a) ;
    Printf("\n Enter a second number :") ;
    Scanf("%d", & b) ;

    if(a==b)
    {
       Printf("%d and %d are equal ", a, b);
    }
  
    else
    {
       Printf(" %d and %d are not equal", a, b);
    }
}



Simple Out put :
Enter the first number :5
Enter the second number : 5
5 and 5 are equal