public int calculate_taxi_fee(int distance) { if (distance<2000) {return 3300;} else { int dx = (distance-2000)/133; return 3300+(dx*100); } }