open_in_new
content_copy
#include <stdio.h> int main() { int n; for(n=19;n<=100;n=n+1){ if (n%19==0) printf("%d .\n",n); } }