1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

なぜジョイントされるだけなの?

Last updated at Posted at 2015-09-10

入力標準から単純に足し算をしたいだけなのに
二つの整数がジョイントされて表示されてるだけ。

#coding: utf-8
input_lines_1 = input("なにか整数をにゅうりょくしてください\n")
a = input_lines_1
int(input_lines_1)
input_lines_2 = input("なにか整数をにゅうりょくしてください\n")
b = input_lines_2
int(input_lines_2)
print (a+b)

なぜでしょう?

1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?