// Isçi Problemleri | www.aliakyildirim.com | Ali AKYILDIRIM
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
// Isçi Problemleri | www.aliakyildirim.com | Ali AKYILDIRIM
namespace GrupCalismasi
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        int x;
        int y;
        int sonuc;
        private void Form1_Load(object sender, EventArgs e)
        {
            textBox1.Focus();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                x = int.Parse(textBox1.Text);
                y = int.Parse(textBox2.Text);
                sonuc = ((x * y) / (x + y));
                lblSonuc.Text = sonuc.ToString() + " Saatte Yapar";
            }
            catch (Exception)
            {
                lblSonuc.Text = "Verileri Düzgün Formatta Girmediniz..!";
                textBox1.Focus();
            }
        }
    }
}
// Isçi Problemleri | www.aliakyildirim.com | Ali AKYILDIRIM