Легкий набор задач


Посчитайте сумму двух чисел. Считать из стандартного потока
посмотреть в олимпиаде

Комментарий/решение:

пред. Правка 2   0
2018-10-28 03:33:16.0 #

кодты корсету/жасыру

пред. Правка 2   1
2018-10-28 03:33:35.0 #

кодты корсету/жасыру

  -1
2019-03-07 18:47:18.0 #

#include<iostream>

using namespace std;

int main ()

{

int a,b;

cin>>a>>b;

cout<<a+b<<endl;

return 0;

}

  0
2019-11-19 13:52:38.0 #

кодты корсету/жасыру

пред. Правка 3   0
2019-12-23 11:26:28.0 #

  -1
2020-02-08 13:08:38.0 #

#include<iostream>

using namespace std;

int main(){

long long int a,b;

cin>>a>>b;

cout<<a+b;}

  0
2020-10-28 05:55:32.0 #

#include < stdio.h >

long a,b;

int main(){

freopen("input.txt","r",stdin);

freopen("output.txt","w",stdout);

scanf("%ld%ld",&a,&b);

printf("%ld",a+b);

return 0;

}

  0
2020-10-28 05:59:37.0 #

#include < stdio.h >

long a,b;

int main(){

freopen("input.txt","r",stdin);

freopen("output.txt","w",stdout);

scanf("%ld%ld",&a,&b);

printf("%ld",a+b);

return 0;

}

  1
2020-12-07 09:10:05.0 #

#include<iostream>

using namespace std;

int main ()

{

int a,b;

cin>>a>>b;

cout<<a+b<<endl;

return 0;

}

  0
2021-01-05 13:52:12.0 #

#include<iostream>

using namespace std;

int main(){

int a,b;

cin>>a>>b;

cout<<a+b<<endl;

return 0;

}

  0
2021-02-09 21:07:44.0 #

a=int(input("a=?"))

b=int(input("b=?"))

c=a + b

print(c)

  0
2021-03-07 13:16:13.0 #

code

n1 = int(input())

n2 = int(input())

print(n1 + n2)

code

  0
2021-03-09 11:46:27.0 #

кодты корсету/жасыру

  0
2021-11-14 00:26:30.0 #

a,b=map(float,input().split())

print(a+b)

  0
2021-11-19 12:35:01.0 #

кодты корсету/жасыру

#include<iostream>

using namespace std;

int main ()

{

int a,b;

cin>>a>>b;

cout<<a+b<<endl;

return 0;

}

  3
2021-12-23 10:54:12.0 #

#include <bits/stdc++.h>

using namespace std;

int main(){

cout<<"I'm oxxymiron";

return 0;

}

  2
2021-12-23 15:04:32.0 #

Это что за пропаганда оксимирона? И то более того ты его ник не правильно написал, должно быть 3 "x"

  2
2021-12-24 15:51:06.0 #

я просто окси мирн

  1
2022-04-01 17:46:38.0 #

a=int(input())

b=int(inpur())

s=a+b

print(s)

  0
2023-11-02 16:26:59.0 #

inpur was not declared in this scope

  0
2023-11-02 16:27:10.0 #

dushnila

  0
2022-12-01 17:29:38.0 #

#include <bits/stdc++.h>

using namespace std;

int main()

{

int a, b;

cin >>a >>b;

cout <<a + b;

}

  0
2022-12-05 20:10:13.0 #

#include<iostream>

using namespace std;

int main ()

{

int a,b;

cin>>a>>b;

cout<<a+b;

return 0;

}

  0
2023-01-16 15:40:11.0 #

#include <bits/stdc++.h>

using namespace std;

int a,b;

int main(){

ios_base::sync_with_stdio(0);

cin.tie(0);cout.tie(0);

cin>>a>>b;

cout<<a+b;

}

  0
2023-02-28 00:03:42.0 #

#include <iostream>

using namespace std;

int main() {

int a, b;

cin >> a >> b;

cout << a + b << endl;

return 0;

}

  0
2023-02-28 00:04:20.0 #

a, b = map(int, input().split())

print(a + b)

  0
2023-03-23 03:02:35.0 #

a=int(input())

b=int(input())

print(a+b)