[ create a new paste ] login | about

Link: http://codepad.org/XwvbOPgL    [ raw code | output | fork ]

C++, pasted on Sep 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <vector>
using namespace std;

long  sumBigNumber(_______)
{
    _______
}
int main()
{
    string numA, numB;
    cin >> numA >> numB;
    cout << sumBigNumber(numA, numB);
    return 0;
}


Output:
1
2
Line 5: error: '_______' was not declared in this scope
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: