Сума двох цілих
не могу понять
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;
}
UZATMAĞA EHTIYAC YOXDU...
include <iostream>
using namespace std; int main (){ long a,b; cin>>a>>b; cout<<a+b; }
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); } } }
include <iostream>
using namespace std;
int main() { long n, m; cin >> n >> m; cout << n + m; return 0; }
include <iostream>
using namespace std; int main() { long long a,b; cin>>a>>b; cout<<a+b; }
using namespace std;
int main() { long a,b; cin>>a; cin>>b; cout<<a+b;
return 0;
}