#include <stdio.h> void main() { int L = 6; int a = 5; int b = L < a ? L++ : a++; printf("%d", b); }
5
Previous Question Next Question
Your comments will be displayed only after manual approval.