Why are you reading 11 character for the date value when it only has 9?
Try using LIST mode input instead of FORMATTED mode. Also make sure you include at least one line of data. The datalines stop on the last line BEFORE the semi-colon. Also no need to include an extra RUN statement after the end of your data step.
data sasprg.data1;
infile datalines ;
input Bday :$9. Date :date. Timer :stimer. Country :$30. Gender :$7.;
format Date date11. Timer time5.;
datalines;
29SEP2018 29-Aug-19 10:36 ARGENTINA Male
;