C Kickstart1 Min Read LetuscrackonJune 6, 2024 Check if X is Less than or Equal to Y (Using Ternary Operator) Accept two numbers X and Y as the input. The program must print YES if X is less than or equal to Y. Else the…
Python1 Min Read LetuscrackonJune 5, 2024 Check if 2 or 3 Digit Number Check if 2 or 3 Digit Number: Given an integer N as input, the program must print YES if the given integer N is a two digit or a…
Python1 Min Read LetuscrackonJune 5, 2024 Check First & Last Two Digits Check First & Last Two Digits: Accept a number N and print “yes” if the first two digits and the last two digits are same,…
Python1 Min Read LetuscrackonJune 4, 2024 Python Program To Check if N is Formed from M The program must accept two integers M and N as input. The program must print “YES” if an…