Cod sursa(job #1546459)
Utilizator | Data | 8 decembrie 2015 02:57:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.27 kb |
#include<fstream>
using namespace std;
int a, b, s;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main()
{
cin >> a;
cin >> b;
_asm
{
mov eax,a
mov ebx,b
add ebx, eax
mov b,ebx
}
cout << b;
//system("pause");
return 0;
}