#include <stdio.h>

void green() {
    printf("HEllow Giri!!,this is the function with parameter woth no parameter and no return value.\n");
    
}
int main(){
    green();
    add(5,2);
}