/***********************************************************************
* Write a program that stores the integers 62 and 99 in variables, and stores the sum of
these two in a variable named total.
* __________________________________________________
* Stores the two integers 62 99 and the sum in total.
* __________________________________________________
* OUT
*total
***********************************************************************/
#include <iostream>
using namespace std;
int main()
{
int num1 = 62;
int num2 = 99;
int total = num1 + num2;
return 0;
}
LyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqCiAqIFdyaXRlIGEgcHJvZ3JhbSB0aGF0IHN0b3JlcyB0aGUgaW50ZWdlcnMgNjIgYW5kIDk5IGluIHZhcmlhYmxlcywgYW5kIHN0b3JlcyB0aGUgc3VtIG9mCnRoZXNlIHR3byBpbiBhIHZhcmlhYmxlIG5hbWVkIHRvdGFsLgogKiBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwogKiBTdG9yZXMgdGhlIHR3byBpbnRlZ2VycyA2MiA5OSBhbmQgdGhlIHN1bSBpbiB0b3RhbC4KICogX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KICogT1VUIAoqdG90YWwKKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovCiNpbmNsdWRlIDxpb3N0cmVhbT4KdXNpbmcgbmFtZXNwYWNlIHN0ZDsKCmludCBtYWluKCkgCnsKCWludCBudW0xID0gNjI7CglpbnQgbnVtMiA9IDk5OwoJaW50IHRvdGFsID0gbnVtMSArIG51bTI7CglyZXR1cm4gMDsKfQ==