#include "stdio.h"void main(){float a[10];for (int i=0;i<10;i++)scanf("%f",&a[i]);for (i=0;i<10;i++)if (a[i]>0)printf("%f",a[i]);}