You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
	
		
			
				
				
					
						
						
						
							|  | # Сумма
 | 
						
						
						
							|  | # Напишите программу, которая будет считывать два целых числа (каждое в отдельной строке) и выводить их сумму.
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | # Примеры
 | 
						
						
						
							|  | # Ввод: 8 5
 | 
						
						
						
							|  | # Вывод: 13
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | # Решение
 | 
						
						
						
							|  | a = int(input())
 | 
						
						
						
							|  | b = int(input())
 | 
						
						
						
							|  | print(a+b) |