Attention: Compiler Under Construction

⚠️ The compiler is still under construction. While executing, the output may sometimes match the expected result, but it could still show incorrect output. Please be aware of this.

⛔ Each test case is case-sensitive, so ensure that every letter is correctly capitalized or lowercase as expected.

VedPad

23. Ask the user for two integer inputs, assign them to variables, and print the greater number. If both are equal, print 'Equal'.

Expected Output:

Greater number or 'Equal' if both numbers are the same

Test Cases

Test Case 1:

Input:

5 10

Output:

10

Test Case 2:

Input:

20 15

Output:

20

Test Case 3:

Input:

8 8

Output:

Equal

Test Case 4:

Input:

-3 2

Output:

2

⌛ Waiting for execution...

VedPad

Font
Loading...

Your Output