#include <stdio.h>
int myFunction(int x) {
return 5 + x;
}
int main() {
printf("结果是:%d", myFunction(3));
return 0;