#include<stdio.h>
void main()
{
int n,x;
printf("\nEnter 1 or 2 : ");
scanf("%d",&n);
x=(n==1)?10:20;
printf("\nX=%d”,x);
}