diff --git a/ElsoProjekt.sln b/ElsoProjekt.sln
new file mode 100644
index 0000000..a9ae237
--- /dev/null
+++ b/ElsoProjekt.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.33529.622
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElsoProjekt", "ElsoProjekt\ElsoProjekt.csproj", "{B3E0845E-8C01-4D7B-85E4-12669997FE61}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {B3E0845E-8C01-4D7B-85E4-12669997FE61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B3E0845E-8C01-4D7B-85E4-12669997FE61}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B3E0845E-8C01-4D7B-85E4-12669997FE61}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {B3E0845E-8C01-4D7B-85E4-12669997FE61}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8D0FB675-0CFF-4449-86D5-73483AFF7800}
+ EndGlobalSection
+EndGlobal
diff --git a/ElsoProjekt/App.config b/ElsoProjekt/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/ElsoProjekt/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ElsoProjekt/ElsoProjekt.csproj b/ElsoProjekt/ElsoProjekt.csproj
new file mode 100644
index 0000000..55babeb
--- /dev/null
+++ b/ElsoProjekt/ElsoProjekt.csproj
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {B3E0845E-8C01-4D7B-85E4-12669997FE61}
+ Exe
+ ElsoProjekt
+ ElsoProjekt
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ElsoProjekt/Program.cs b/ElsoProjekt/Program.cs
new file mode 100644
index 0000000..2ae340a
--- /dev/null
+++ b/ElsoProjekt/Program.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ElsoProjekt
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Üdv 13. estis évfolyam");
+ //Console.ReadKey();
+ Console.WriteLine();
+
+ byte a = 2;
+ int c = -30;
+ Console.WriteLine(int.MinValue+" - "+int.MaxValue);
+ Console.WriteLine(long.MinValue + " - " + long.MaxValue);
+
+ }
+ }
+}
diff --git a/ElsoProjekt/Properties/AssemblyInfo.cs b/ElsoProjekt/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..a6442be
--- /dev/null
+++ b/ElsoProjekt/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("ElsoProjekt")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ElsoProjekt")]
+[assembly: AssemblyCopyright("Copyright © 2024")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("b3e0845e-8c01-4d7b-85e4-12669997fe61")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]