print

CF

Reverse Order – print N to 1

A number N is passed as the input. The program must print the numbers from N to 1 (inclusive of N). Input Format: The first line denotes the…
CF

Print Digits – X and Y

The program must accept two integers X and Y as the input. The program must print all the digits from the unit digit of X…
PythonF

Print Odd or Even

The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…
PythonF

Print 2N and 4N

The program must accept an integer N as the input. The program must print 2N and 4N as the output. Please fill…