using System;
public class Program
{
public static void Main()
int a = 5555;
int b= 1000;
int c = a-b;
Console.WriteLine(a);
Console.WriteLine(b);
Console.WriteLine(c);
Console.WriteLine ("So The 5555 and 1000 Are shown on the screen see that babu " );
}