Telemetry Packet Memory Cleanup

#include <iostream>
using namespace std;

int main() {
    int firstValue, secondValue;
    cin >> firstValue >> secondValue;

    // Write your dynamic allocation logic here
    int *p = new int;
    *p = firstValue;

    delete p;

    p = new int;
    *p = secondValue;
    
    cout << *p << endl;
    delete p;
    return 0;
}

Solving Approach

 

 

 

 

 

 

Upvote
Downvote
Loading...

Input

25 40

Expected Output

40