#include <iostream>
using namespace std;
int main() {
// your code goes here
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgp1c2luZyBuYW1lc3BhY2Ugc3RkOwoKaW50IG1haW4oKSB7CgkvLyB5b3VyIGNvZGUgZ29lcyBoZXJlCglyZXR1cm4gMDsKfQ==
I2luY2x1ZGUgJmx0O3N0ZGlvLmgmZ3Q7CmludCBtYWluKCkgewogICAgaW50IGEsIGIsIHN1bWE7CiAgICBwcmludGYoJnF1b3Q7SW50cm9kdWNlIGRvcyBuJnVhY3V0ZTttZXJvczogJnF1b3Q7KTsKICAgIHNjYW5mKCZxdW90OyVkICVkJnF1b3Q7LCAmYW1wO2EsICZhbXA7Yik7CiAgICBzdW1hID0gYSArIGI7CiAgICBwcmludGYoJnF1b3Q7TGEgc3VtYSBlczogJWRcbiZxdW90Oywgc3VtYSk7CiAgICByZXR1cm4gMDsKfQo=
#include <stdio.h>
int main() {
int a, b, suma;
printf("Introduce dos números: ");
scanf("%d %d", &a, &b);
suma = a + b;
printf("La suma es: %d\n", suma);
return 0;
}