x<1 y=x
1<=x<10 y=2x-1
x>=10 y=3x-11
#include<stdio.h>
main()
{
int x,y;
scanf("%d",&x);
if(x<1)
y=x;
else if(x>=1&&x<10)
y=2x-1;
else if(x>=10)
y=3x-11;
printf("%d",y);
}
x<1 y=x
1<=x<10 y=2x-1
x>=10 y=3x-11
#include<stdio.h>
main()
{
int x,y;
scanf("%d",&x);
if(x<1)
y=x;
else if(x>=1&&x<10)
y=2x-1;
else if(x>=10)
y=3x-11;
printf("%d",y);
}