eolymp
bolt
Try our new interface for solving problems
Problems

Сума двох цілих

published at 7/7/20, 3:25:54 pm

не могу понять

published at 5/10/21, 9:37:17 pm

include <iostream>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) { long a,b; cin>>a>>b;

cout<<a+b;
return 0;

}

published at 8/10/22, 7:56:02 am

UZATMAĞA EHTIYAC YOXDU...

include <iostream>

using namespace std; int main (){ long a,b; cin>>a>>b; cout<<a+b; }

published at 9/22/22, 8:53:38 pm

using System;

namespace Test { class Problem { public static void Main(string[] args) { long n = Convert.ToInt64(Console.ReadLine()); long m = Convert.ToInt64(Console.ReadLine()); Console.WriteLine(n+m); } } }

published at 9/23/22, 8:41:09 pm

include <iostream>

using namespace std;

int main() { long n, m; cin >> n >> m; cout << n + m; return 0; }

published at 1/9/23, 8:15:56 am

include <iostream>

using namespace std; int main() { long long a,b; cin>>a>>b; cout<<a+b; }

published at 10/18/23, 8:14:01 pm

using namespace std;

int main() { long a,b; cin>>a; cin>>b; cout<<a+b;

return 0;

}