using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace G_H_S_H.Groups
{
////do new class
class Keki
{
///add 4 methods
public int add(int x, int y)
{ return x + y; }
public int subract(int x,int y)
{ return x - y; }
public int divide(int x, int y)
{ return x / y; }
public int multiplay(int x, int y)
{ return x * y; }
}
class G_H_S_H
{
static void Main(string[] args)
{
Keki add = new Keki();
Keki sub = new Keki();
Keki div = new Keki();
Keki mult = new Keki();
int G, H, S, H_;
G = add.add(5, 5);
H = sub.subract(10, 5);
S = div.divide(4, 2);
H_ = mult.multiplay(12, 12);
Console.WriteLine("Result GeneraL===>" + G);
Console.WriteLine("Result HaMdY ===>" + H);
Console.WriteLine("Result SaMy ===>" + S);
Console.WriteLine("Result Halwany===>" + H_);
Console.Read();
Console.WriteLine("Good Bye& thx 4 ur visit 2 us --Generals TeaM :)");
Console.ReadLine();
Console.ReadLine();
}
}
}