Write a class SocialNetwork
with private attributes for friends and blocked users. Implement methods for sending and receiving friend requests, making sure that blocked users cannot send requests.
Example 1:
Input: Friend Request: "John", Block User: "John"
Output: "Blocked user cannot send friend requests"
Example 2:
Input: Friend Request: "John"
Output: "Friend request sent"