f(double a,double b,int c,int d)1 double f(double a, double b, int c, int d)
2 {
3   return (c>10&&d>20)?a:b;
4 }
5