// Print a message only if a number is divisible by 2 and 3.

// Written by: Andrew Taylor <andrewt@unsw.edu.au>
// Written as a COMP1521 lecture example


#include <stdio.h>

int main(void) {
    int n;
    printf("Enter a number: ");
    scanf("%d", &n);

    if (n % 2 != 0) goto epilogue;
    if (n % 3 != 0) goto epilogue;
        printf("six-ish\n");

epilogue:
    return 0;
}