#include <iostream>

using namespace std;

int main()
{
    int sayi;
    cout << "Bir sayi giriniz : " <<endl;
    cin>>sayi;
   
    if(sayi%2 == 0)
    {
        cout<< sayi << " bir cift sayidir." << endl; 
    } 
    else
    {
        cout<< sayi << " bir tek sayidir." << endl;  
    }
    
    system("pause");
    return 0;
}

