Problem addition
User AlphanumericUsername
Submission Time 2022-12-23 21:32:45
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp: In function ‘int main()’:
addition.cpp:8:10: error: ‘LLONG_MIN’ was not declared in this scope
8 | int ans=LLONG_MIN;
| ^~~~~~~~~
addition.cpp:2:1: note: ‘LLONG_MIN’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
1 | #include <iostream>
+++ |+#include <climits>
2 | using namespace std;