now loading...
import 'dart:math' as math; void main() { int a = 1; int b = 2; print(math.max(a, b)); // 2 }