mix 100 B

12345678
  1. void main() {
  2. int a = 5;
  3. int b = 6;
  4. if(a + b < 20 && a > 3) {
  5. print 1;
  6. }
  7. }