package test;
public class Main {
public static void main(String[] args) {
int cnt=0;
for(int i1=1;i1<2019;i1++) {
for(int i2=i1+1;i2<2019;i2++) {
int i3=2019-i1-i2;
if(i3<=i2)continue;
else {
boolean judge=true;
int ans1=i1;
int ans2=i2;
int ans3=i3;
while(ans1>0) {
int a=ans1%10;
if(a==2||a==4) {
judge=false;
break;
}
ans1/=10;
}
while(ans2>0) {
int a=ans2%10;
if(a==2||a==4) {
judge=false;
break;
}
ans2/=10;
}
while(ans3>0) {
int a=ans3%10;
if(a==2||a==4) {
judge=false;
break;
}
ans3/=10;
}
if(judge) {
cnt++;
System.out.println(i1+" "+i2+" "+i3);
}
}
}
}
System.out.print(cnt);
}
}