#include<stdio.h> int compareValue2(int v,int v2) { return v>v2?v:v2; } int main() { printf("%d\n",compareValue2(4,2)); return 0; }