CJCoding With Joseph

Divisible by Both 2 and 3

Read an integer n. If n is divisible by BOTH 2 and 3, print Yes; otherwise print No.

For example, given the input 12, the program prints:

Yes

Use the && operator to combine the two conditions.

Expected Output:

Yes
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
12
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.