13 lines
188 B
C
13 lines
188 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
|
|
int userNum;
|
|
scanf("%d", &userNum);
|
|
if (userNum % 3) {
|
|
printf("is not a multiple of 3\n");
|
|
} else {
|
|
printf("is a multiple of 3\n");
|
|
}
|
|
}
|