import 'dart:io'; void main() { int n = 2; if(n%2 == 0){ print("yes $n"); }else{ print("no $n"); } }