Skip to content

Commit

Permalink
Updated line spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
heisastark authored Apr 1, 2020
1 parent 0519268 commit a281efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Karatsuba_Algorithm/Karatsuba_Algorithm.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ int karatSuba(num1, num2){
return result;
}


void main(){
String a, b;
a = stdin.readLineSync();
b = stdin.readLineSync();
print(karatSuba(int.parse(a), int.parse(b)));
}

/*
Sample input:
12345
Expand Down

0 comments on commit a281efd

Please sign in to comment.