def tam_sayi():
try:
sayi=int(input('bir sayi girin:'))
print('Tam sayı girdiniz')
except ValueError:
print('lütfen tam sayı girin')

tam_sayi()