import 'dart:math';

main() {
var rng = new Random();
print(rng.nextInt(100));//0-99
}