CJCoding With Joseph

Divisible by 5 from Input

Read an integer n from standard input. Print Yes if n is evenly divisible by 5, otherwise print No. Print exactly Yes or No (capital first letter) with no trailing newline. For example, if the input is 25, print:

Yes

Expected Output:

Yes
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
25\n
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.