Elemen terkecil dari tiga

int x = min(min(a, b), c);
int x = min({a, b, c});
BreadCode