// Online C# Editor for free
// Write, Edit and Run your C# code using C# Online Compiler
using System;
public class HelloWorld
{
public static void Main(string[] args)
Console.WriteLine(fixedLength(100));
string fixedLength(int length=0){
int count=0;
string input="";
while(count!=100)
input+="this is information";
count++;
}
if(input.Length > length)
return input.Substring(0,length);
else
return input.PadLeft(length, ' ');