#include <stdio.h>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a + b);
return 0;
}
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << (a + b) << endl;
return 0;
}
using System;
class Program {
static void Main() {
var inputs = Console.ReadLine().Split();
int a = int.Parse(inputs[0]), b = int.Parse(inputs[1]);
Console.WriteLine(a + b);
}
}
program SumAB;
var
a, b: Integer;
begin
ReadLn(a, b);
WriteLn(a + b);
end.
program SumAB;
var
a, b: Integer;
begin
ReadLn(a, b);
WriteLn(a + b);
end.
a, b = map(int, raw_input().split())
print a + b
a, b = map(int, input().split())
print(a + b)
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << (a + b) << endl;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << (a + b) << endl;
return 0;
}
using System;
class Program {
static void Main() {
var inputs = Console.ReadLine().Split();
int a = int.Parse(inputs[0]), b = int.Parse(inputs[1]);
Console.WriteLine(a + b);
}
}
fun main() {
val (a, b) = readLine()!!.split(" ").map { it.toInt() }
println(a + b)
}
package main
import "fmt"
func main() {
var a, b int
fmt.Scan(&a, &b)
fmt.Println(a + b)
}
a, b = gets.split.map(&:to_i)
puts a + b
// These functions are added for input/output
var [a, b] = readline().split(" ").map(Number);
print(a + b);
fn main() {
let mut input = String::new();
std::io::stdin().read_line(&mut input).unwrap();
let nums: Vec<i32> = input
.split_whitespace()
.map(|s| s.parse().unwrap())
.collect();
let a = nums[0];
let b = nums[1];
println!("{}", a + b);
}
<?php
[$a, $b] = explode(' ', trim(fgets(STDIN)));
echo $a + $b;
const input: string = await Bun.stdin.text();
const [a, b]: number[] = input.trim().split(' ').map(Number);
console.log(a + b);
const input = await Bun.stdin.text();
const [a, b] = input.trim().split(' ').map(Number);
console.log(a + b);