#include int main() { unsigned int n, r; scanf("%u", &n); r = n % 2; if (r == 0) { printf("Pari\n"); } else { printf("Dispari\n"); } return 0; }