def print_friends_count(friends_count, name=None):
count = str(friends_count if friends_count > 0 else '')
if friends_count == 1:
text = ' друг'
elif 2 <= friends_count <= 4:
text = ' друга'
elif friends_count >= 5:
text = ' друзей'
else:
text = 'нет друзей'
if name:
print(name + ', у тебя ' + count + text)
else:
print('У тебя ' + count + text)