#include<stdio.h>
int main()
{
int i;
int(i=10;i<=50;i+=10);
{
printf("%d",i);
}
return 0;
}