#include<stdio.h>
int main()
{
    int k, num = 50;
    k = (num < 10) ? 100 : 200;
    printf("%d\n", num);
    return 0;
}

Posted on by