using System;
using System.Web;
using System.Net;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
string str = "Code camp day 100";
Console.WriteLine(string.IsNullOrEmpty(str));
Console.WriteLine(string.IsNullOrWhiteSpace(str));
}