#include <stdio.h>
int main(){
int N,o;
N=1;
printf("The input represents a single integer %d",N);
scanf("%d",&N);
if (N>1){
o=N/2;
}
else if (N<1){
printf("Invalid input")
}