using System;
public class Program
{
public static void Main()
int a = 6789;
int b = a/100;
int c = (a%1000)+(a/10);
int d = a*10;
}