Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

BCVTAB - A cộng B (Cơ bản)

Tính tổng 2 số.

Input

2 số a,b cách nhau bởi dấu cách (a,b<=10^18)

Output

Tổng 2 số trong input

Example

Input:
3 4

Output:
7

ID RESULT TIME
code...



Được gửi lên bởi:adm
Ngày:2011-10-19
Thời gian chạy:0.200s
Giới hạn mã nguồn:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Ngôn ngữ cho phép:ASM32-GCC ASM32 MAWK BC C CSHARP C++ 4.3.2 CPP CPP14 COFFEE LISP sbcl DART FORTH GO JAVA JS-RHINO JS-MONKEY KTLN OCT PAS-GPC PAS-FPC PERL PERL6 PROLOG PYTHON PYTHON3 PY_NBC R RACKET SQLITE SWIFT UNLAMBDA

hide comments
2015-07-15 18:22:50
#include<stdio.h>
main()
{
double a,b;
printf("Nhap vao 2 so a va b\n");
scanf("%lf%lf",&a,&b);
printf("%.0lf\n",a+b);
}
sai o dau moi nguoi
2015-06-16 10:58:20
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class sum2Number {

public static void main (String [] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
long numberA, numberB;
try {
System.out.println("Nhap gia tri A: ");
numberA = Long.parseLong(br.readLine());
System.out.println("Nhap gia tri B: ");
numberB = Long.parseLong(br.readLine());
System.out.println("Tong la: " + (numberA + numberB));
} catch (NumberFormatException | IOException e) {
e.printStackTrace();
}
}

}
2015-04-19 11:11:14
#include <iostream.h>
using namespace std;
int main()
{
cin >> a;
cin >> b;
cout<<a+b;
return 0;
system("pause");
}
có ai biết sai chổ nào không
2014-12-10 13:52:23 62
10^18 thì dùng long long nhé!
2014-05-30 17:55:01 nguyệt
ko thấy sai chỗ nào sao cứ bảo là biên dịch bị lỗi là sao ta? ???
2014-02-26 15:42:24 Lỗ Trí Thâm
#include<stdio.h>
#include<conio.h>
main()
{
long a,b,tong;
printf("nhap mso nguyen a: ");
scanf("%d",&a);
printf("nhap mso nguyen b: ");
scanf("%d",&b);
tong=a+b;
printf("tong cua a va b la: %d",tong);
getch();
}


Last edit: 2014-02-26 16:16:13
2014-02-25 19:05:43 Ngô Quang Trọng
mẹ cái bài ni..xử lý số lớn cũng không xong...
2014-01-05 16:29:44 Vani
Cần lập một group trao đổi về các bài trên SPOJ.com Có anh em nào tham gia không ? :) link group đây :)
https://www.facebook.com/groups/411031435693454/
2013-11-24 15:29:17 Nguyễn Duy Khương
sai đâu ta
2013-11-24 15:28:55 Nguyễn Duy Khương
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin >> a;
cin >> b;
c=a+b;
cout <<c<< endl;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.