Number of Events

Number of Events 



Input Format: The first line of the input is an integer that corresponds to the number of events to be hosted at Codissia.


Output Format: The output should display the number of events to be hosted at Codissia.

Sample Input and Output: Enter the number of events hosted in Codissia

50

Number of events hosted in Codissia is 50


C Program:

#include <stdio.h>
int main()
{    
int a;    
printf("Enter the Number of Events hosted in Codissia\n");    
scanf("%d",&a);    
printf("Number of events hosted in Codissia is %d",a);    
return 0;
}
Output:

> Enter the Number of Events hosted in Codissia
> 50
> Number of events hosted in Codissia is 50
 >