สถานะการส่งล่าสุด: -

SOS11: Conditions 01

Conditions 01

Fill in the blank to correctly check if the user input is divisible by 3 or 5.

Example:

input: 3
3 is divisible by 3.
input: 100
100 is divisible by 5.
input: 225
225 is divisible by 3 and 5.
input: 2048
2048 is not divisible by 3 or 5.

num = int(input())
if  and :
    print()
elif :
    print()
elif :
    print()
else:
    print()