#include <stdio.h> main() { int a[20],i,b,c; for(i=0;i<=19;i++) a[i]=rand()%90+10; for(i=0;i<=19;i++) printf("%d ",a[i]); getchar(); }