1 2 3 4 5 6 7 8 | #include<iostream> using namespace std; int main(){ int a; cin>>a; cout<<a; return 0; } |
-
upload with new input
-
result: Success time: 0s memory: 2856 kB returned value: 0
#include<iostream> using namespace std; int main() { int a,b,sum; cout<<"enter a"; cin>>a; cout<<"enter b"; cin>>b; sum=a+b; cout<<sum; return 0; } -
result: Success time: 0s memory: 2900 kB returned value: 0
#include<iostream> using namespace std; int main(){ int a; cin>>a; cout<<a; return 0; } -
result: Success time: 0.01s memory: 2728 kB returned value: 0
123
123
-
result: Success time: 0.01s memory: 2728 kB returned value: 0
3
3
-
result: Success time: 0.01s memory: 2684 kB returned value: 0
6
6
-
result: Success time: 0.01s memory: 2684 kB returned value: 0
134514064


