// #include <stdio.h>
int add (int a,int b){
return a+b;
}
int main(){
//printf("Hello RISCV!\n");
int a = add(1,23);
return a;