#939: __求救


famous727 (famous727)


# include <iostream>
using namespace std;
int main (  )
{

int a,b,c;
while(cin>>a>>b)
{
 c=a-b;
 if (c<0)
 cout<<c*-1<<endl;
 else
 cout<<c<<endl;             
               
               
               
               
               
}               


 return 0;
  }

#5194: Re:求救


pigismy0 (小野貓)


請把: int a,b,c;

改成:long long a,b,c;

這樣應該就可以過了