// Tweet program
using System;
using System.Collections.Generic;
public class Program
{
// -------------------------
// Subprograms
// -------------------------
static List<string> tweets (string message, int num_chars)
{
}
// -------------------------
// Main program
// -------------------------
static void Main()
{
Console.Write("Enter the message: ");
string message = Console.ReadLine();
Console.Write("How many characters per message? :");
int max_chars = Convert.ToInt32(Console.ReadLine());
List<string> tweet_elements = tweets(message, max_chars);
foreach (string tweet in tweet_elements)
{
Console.WriteLine(tweet);
}
}
}