1. Exercise web page Examination requirements - web page No cheating Programiz: https://www.programiz.com/csharp-programming 2. Theory 2.1 Hello World code 2.2 Identifiers: namig 2.3 Variables and Static vs Dynamic types of variable 2.4 Basic I/O: WriteLine and Readline 2.5 Comments: 3 tupes 2. Cvičení - Exercise 1. (5P 0.2 Hello World 2) (CZ) Napište program, který na první řádek vypíše slovo "Prvni" a na druhý "program". 2. (5P 1.1 Součet dvou čísel) (CZ) Napište program, který ze vstupu přečte dvě celá čísla a vypíše jejich součet. Můžete předpokládat, že se vejdou do typu integer a stejně tak i jejich součet. Před i za i mezi čísly může být libovolný počet bílých znaků (mezery, tabulátory, konce řádek). 3. (recodex) (PPPPP 5.1 Vypsání pole v opačném pořadí) (CZ) Na vstupu dostanete posloupnost celých čísel ukončenou číslem -1, které nepatří do seznamu. Vypište je v opačném pořadí oddělená mezerou. Čísel nebude více než 1000. Čísla na vstupu jsou oddělená mezerami a nebo konci řádek, tedy vstup může obsahovat více řádek a řádka může obsahovat více čísel. Pozor, i za hodnotou -1 mohou být další čísla, ale ta už pro náš program nejsou zajímavá. 1. (5P 0.2 Hello World 2) (EN) Write a program that prints the word "First" on the first line and "program" on the second line. 2. (5P 1.1 Součet dvou čísel) (EN) Write a program that reads two integers from input and prints their sum. You can assume that they fit into an integer type and so does their sum. There can be any number of white characters (spaces, tabs, line breaks) before, after and between the numbers. 3. (recodex) (PPPPP 5.1 Vypsání pole v opačném pořadí) (EN) Input of the program is the list of no more than 1000 integers, limited by the -1 which does not belongs to the list. Write those numbers in reverse order, limited by spaces. 4. Euclid algorithm Euclid algorithm is the method for computing the greatest common divisor (GCD) of two integers (numbers), the largest number that divides them both without a remainder. Write the program that reads two integer number and prints (on console) their greatest common divisor.