Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int a;
- scanf("%d", &a);
- if(a % 3 == 0) {
- printf("NEMA OSTATOK\n");
- }
- else if(a % 3 == 1) {
- printf("EDEN\n");
- }
- else if(a % 3 == 2) {
- printf("DVA\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement