Değişkenler-4

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Degiskenler3
{
    class Program
    {
        static void Main(string[] args)
        {
            byte yas;

            Console.Write("Yaşınız : ");
            yas = Convert.ToByte(Console.ReadLine());
            
            yas++;//1 arttırmak için

            Console.WriteLine("Önümüzdeki yıl yaşınız => {0}",yas);
            ++yas;
            yas += 1;

            yas =Convert.ToByte(yas + 1);

            byte yas1 = 3, yas2 = 4;
            byte yas3 = Convert.ToByte(yas1 + yas2);

            Console.ReadKey();

        }
    }
}