#include <iostream>
using namespace std;
int main() {
int nr,i;
for(i=10;i<=99;i++){
if((i%2==0)&&(i%7==0)){
cout << i << " ";
}
return 0;