1
0
mirror of https://github.com/Kiritow/OJ-Problems-Source.git synced 2024-03-22 13:11:29 +08:00
OJ-Problems-Source/CodeVS/1000_冰封.pas

6 lines
61 B
ObjectPascal
Raw Normal View History

2016-07-06 14:28:18 +08:00
var a, b:longint;
begin
readln(a,b);
writeln(a+b);
end.